/external/chromium_org/chrome/browser/browsing_data/ |
browsing_data_helper.h | 22 EXTENSION = 1 << 2, // chrome-extension://* 24 ALL = UNPROTECTED_WEB | PROTECTED_WEB | EXTENSION, 30 // `chrome-extension`. 34 // Returns true iff the provided scheme is an extension.
|
browsing_data_helper.cc | 24 // Otherwise, all "web safe" schemes are valid, except `chrome-extension://` 53 // Packaged apps and extensions match iff EXTENSION. 55 origin_set_mask & EXTENSION)
|
browsing_data_helper_unittest.cc | 20 const char kTestOriginExt[] = "chrome-extension://abcdefghijklmnopqrstuvwxyz/"; 29 const int kExtension = BrowsingDataHelper::EXTENSION;
|
browsing_data_remover.cc | 250 if (origin_set_mask_ & BrowsingDataHelper::EXTENSION) { 259 BrowsingDataHelper::EXTENSION), 279 // The extension activity contains details of which websites extensions 584 (BrowsingDataHelper::PROTECTED_WEB | BrowsingDataHelper::EXTENSION)) { [all...] |
/external/chromium_org/chrome/common/extensions/ |
sync_type_unittest.cc | 9 #include "extensions/common/extension.h" 23 EXTENSION, 29 static scoped_refptr<Extension> MakeSyncTestExtensionWithPluginPermission( 71 scoped_refptr<Extension> extension = Extension::Create( local 74 EXPECT_TRUE(extension.get()); 76 EXPECT_FALSE(extension.get()); 78 return extension; 81 static scoped_refptr<Extension> MakeSyncTestExtension [all...] |
/external/chromium_org/chrome/browser/themes/ |
custom_theme_supplier.h | 32 EXTENSION,
|
/external/chromium_org/chrome/browser/extensions/api/browsing_data/ |
browsing_data_test.cc | 33 EXTENSION = BrowsingDataHelper::EXTENSION 204 GetAsMask(origin_types, "extension", EXTENSION); 333 "{\"extension\": true}", EXTENSION); 339 "{\"unprotectedWeb\": true, \"extension\": true}", 340 UNPROTECTED_WEB | EXTENSION); 342 "{\"protectedWeb\": true, \"extension\": true}", 343 PROTECTED_WEB | EXTENSION); [all...] |
browsing_data_api.cc | 7 // honest, are the same thing), as specified in the extension API JSON. 24 #include "extensions/common/extension.h" 51 const char kExtensionsKey[] = "extension"; 123 // extension data. 343 mask |= value ? BrowsingDataHelper::EXTENSION : 0;
|
/external/chromium_org/chrome/browser/task_manager/ |
resource_provider.h | 22 class Extension; 34 def(EXTENSION) /* An extension or app process. */ \ 76 // Return extension associated with the resource, or NULL if not applicable. 77 virtual const extensions::Extension* GetExtension() const; 116 // in the background (e.g. extension background page, background contents).
|
task_manager_browsertest.cc | 41 #include "extensions/common/extension.h" 175 // Browser, the New Tab Page and Extension background page. 178 // Open a new panel to an extension url and make sure we notice that. 180 "chrome-extension://behllobkkfkfnphdnhnkndlbkcpglgmj/french_sentence.html"); 191 // and whose title starts with "Extension:". 201 // Unload extension to avoid crash on Windows. 222 // Browser, the New Tab Page and Extension background page. 225 // Open a new panel to an extension url and make sure we notice that. 227 "chrome-extension://behllobkkfkfnphdnhnkndlbkcpglgmj/french_sentence.html"); 237 // Kill the panel extension process and verify that it disappears from th 290 const extensions::Extension* extension = local 432 const extensions::Extension* extension = model()->GetResourceExtension( local [all...] |
extension_process_resource_provider.cc | 27 #include "extensions/common/extension.h" 34 using extensions::Extension; 55 virtual const extensions::Extension* GetExtension() const OVERRIDE; 57 // Returns the pid of the extension process. 60 // Returns true if the associated extension has a background page. 64 // The icon painted for the extension process. 69 // Cached data about the extension. 131 return EXTENSION; 150 const Extension* ExtensionProcessResource::GetExtension() const { 204 // Add all the existing extension views from all Profiles, including thos [all...] |
panel_resource_provider.cc | 22 #include "extensions/common/extension.h" 28 using extensions::Extension; 43 virtual const extensions::Extension* GetExtension() const OVERRIDE; 72 return EXTENSION; 103 const Extension* PanelResource::GetExtension() const {
|
tab_contents_resource_provider.cc | 42 using extensions::Extension; 82 virtual const extensions::Extension* GetExtension() const OVERRIDE; 85 // Returns true if contains content rendered by an extension. 119 return HostsExtension() ? EXTENSION : RENDERER; 128 // extension process. (It's possible to be showing the URL from before it 161 const Extension* TabContentsResource::GetExtension() const {
|
/external/chromium/chrome/browser/task_manager/ |
task_manager_browsertest.cc | 24 #include "chrome/common/extensions/extension.h" 225 // Loading an extension with a background page should result in a new 231 // Unload extension to avoid crash on Windows (see http://crbug.com/31663). 246 // Browser, Extension background page, and the New Tab Page. 249 // Open a new tab to an extension URL and make sure we notice that. 250 GURL url("chrome-extension://behllobkkfkfnphdnhnkndlbkcpglgmj/page.html"); 254 // Check that the third entry (background) is an extension resource whose 255 // title starts with "Extension:". 256 ASSERT_EQ(TaskManager::Resource::EXTENSION, model()->GetResourceType(2)); 263 // Check that the fourth entry (page.html) is of type extension and has bot 283 const Extension* extension = local 417 const Extension* extension = model()->GetResourceExtension(2); local [all...] |
task_manager.h | 26 class Extension; 48 EXTENSION, // An extension or app process. 73 // Return extension associated with the resource, or NULL 75 virtual const Extension* GetExtension() const { return NULL; } 106 // in the background (e.g. extension background page, background contents). 269 // user, e.g. extension background pages and BackgroundContents). 292 // Returns Extension of given resource or NULL if not applicable. 293 const Extension* GetResourceExtension(int index) const;
|
/external/chromium/chrome/browser/sidebar/ |
sidebar_container.cc | 9 #include "chrome/common/extensions/extension.h" 36 const Extension* extension = GetExtension(); local 37 if (extension && extension->is_app()) { 40 process->set_installed_app(extension); 43 BindingsPolicy::EXTENSION); 55 const Extension* extension = GetExtension(); local 56 if (!extension) 82 const Extension* extension = GetExtension(); local [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
glsl_parser.h | 157 EXTENSION = 375, 358 #define EXTENSION 375
|
/external/chromium/chrome/browser/extensions/ |
extension_processes_api.cc | 88 case TaskManager::Resource::EXTENSION:
|
extension_web_ui.cc | 22 #include "chrome/common/extensions/extension.h" 58 // extension. 77 extension_->GetIconResource(Extension::EXTENSION_ICON_BITTY, 93 NOTREACHED() << "Could not encode extension favicon"; 120 const Extension* extension_; 134 const Extension* extension = service->GetExtensionByURL(url); local 135 if (!extension) 136 extension = service->GetExtensionByWebExtent(url); 137 DCHECK(extension); 274 const Extension* extension = service->GetExtensionByURL(extension_url); local [all...] |
/external/protobuf/src/google/protobuf/ |
extension_set_heavy.cc | 71 for (map<int, Extension>::const_iterator iter = extensions_.begin(); 106 #define GOOGLE_DCHECK_TYPE(EXTENSION, LABEL, CPPTYPE) \ 107 GOOGLE_DCHECK_EQ((EXTENSION).is_repeated ? FieldDescriptor::LABEL_REPEATED \ 110 GOOGLE_DCHECK_EQ(cpp_type((EXTENSION).type), FieldDescriptor::CPPTYPE_##CPPTYPE) 115 map<int, Extension>::const_iterator iter = extensions_.find(number); 127 Extension* extension; local 128 if (MaybeNewExtension(descriptor->number(), descriptor, &extension)) { 129 extension->type = descriptor->type(); 130 GOOGLE_DCHECK_EQ(cpp_type(extension->type), FieldDescriptor::CPPTYPE_MESSAGE) 146 Extension* extension; local 181 const FieldDescriptor* extension = local [all...] |
/external/chromium/chrome/browser/notifications/ |
balloon_host.cc | 35 // If the notification is for an extension URL, make sure to use the extension 37 // extension. 204 rvh->AllowBindings(BindingsPolicy::EXTENSION); 206 const Extension* installed_app =
|
/external/chromium/chrome/browser/ |
memory_details.cc | 14 #include "chrome/common/extensions/extension.h" 169 } else if (host->enabled_bindings() & BindingsPolicy::EXTENSION) { 175 const Extension* extension = local 177 if (extension) { 178 string16 title = UTF8ToUTF16(extension->name()); 287 UMA_HISTOGRAM_MEMORY_KB("Memory.Extension", sample);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
extension_set_heavy.cc | 74 for (map<int, Extension>::const_iterator iter = extensions_.begin(); 114 #define GOOGLE_DCHECK_TYPE(EXTENSION, LABEL, CPPTYPE) \ 115 GOOGLE_DCHECK_EQ((EXTENSION).is_repeated ? FieldDescriptor::LABEL_REPEATED \ 118 GOOGLE_DCHECK_EQ(cpp_type((EXTENSION).type), FieldDescriptor::CPPTYPE_##CPPTYPE) 123 map<int, Extension>::const_iterator iter = extensions_.find(number); 140 Extension* extension; local 141 if (MaybeNewExtension(descriptor->number(), descriptor, &extension)) { 142 extension->type = descriptor->type(); 143 GOOGLE_DCHECK_EQ(cpp_type(extension->type), FieldDescriptor::CPPTYPE_MESSAGE) 187 Extension* extension; local 222 const FieldDescriptor* extension = local [all...] |
/external/chromium_org/v8/src/ |
serialize.h | 47 EXTENSION,
|
/external/v8/src/ |
serialize.h | 47 EXTENSION,
|