HomeSort by relevance Sort by last modified time
    Searched full:allow_file_access (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/permissions/
permissions_api_helpers.h 36 bool allow_file_access,
permissions_api_helpers.cc 69 bool allow_file_access,
129 if (!allow_file_access)
  /external/chromium_org/extensions/common/
url_pattern_set.cc 196 bool allow_file_access,
210 if (!allow_file_access && pattern.MatchesScheme(chrome::kFileScheme)) {
221 bool allow_file_access,
230 return Populate(patterns, valid_schemes, allow_file_access, error);
url_pattern_set.h 90 bool allow_file_access,
95 bool allow_file_access,
url_pattern_set_unittest.cc 233 bool allow_file_access = false; local
235 set2.Populate(*value, URLPattern::SCHEME_ALL, allow_file_access, &error);
239 set2.Populate(patterns, URLPattern::SCHEME_ALL, allow_file_access, &error);
  /external/chromium_org/chrome/common/extensions/
extension_unittest.cc 175 "permissions", "permissions_all_urls.json", Extension::ALLOW_FILE_ACCESS);
187 Extension::ALLOW_FILE_ACCESS);
199 Extension::ALLOW_FILE_ACCESS);
216 Extension::ALLOW_FILE_ACCESS);
239 Extension::ALLOW_FILE_ACCESS);
262 Extension::ALLOW_FILE_ACCESS);
extension.h 123 // |ALLOW_FILE_ACCESS| indicates that the user is allowing this extension
126 ALLOW_FILE_ACCESS = 1 << 2,
  /external/chromium_org/chrome/browser/extensions/
unpacked_installer.cc 188 bool allow_file_access = local
192 allow_file_access = prefs->AllowFileAccess(id);
195 if (allow_file_access)
196 result |= Extension::ALLOW_FILE_ACCESS;
installed_loader.cc 469 flags |= Extension::ALLOW_FILE_ACCESS;
extension_prefs.cc 511 bool allow_file_access = AllowFileAccess(extension_id);
512 return result->Populate(*value, valid_schemes, allow_file_access, NULL);
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
developer_private.idl 45 boolean allow_file_access;
  /external/chromium/chrome/common/extensions/
extension_unittest.cc     [all...]
extension.h 214 // |ALLOW_FILE_ACCESS| indicates that the user is allowing this extension
217 ALLOW_FILE_ACCESS = 1 << 2,
    [all...]
extension.cc 789 if (!(flags & ALLOW_FILE_ACCESS))
    [all...]