HomeSort by relevance Sort by last modified time
    Searched full:extension (Results 226 - 250 of 11491) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/extensions/
extension_web_ui_override_registrar.cc 32 const Extension* extension = local
33 content::Details<const Extension>(details).ptr();
35 profile_, URLOverrides::GetChromeURLOverrides(extension));
38 const Extension* extension = local
39 content::Details<UnloadedExtensionInfo>(details)->extension;
41 profile_, URLOverrides::GetChromeURLOverrides(extension));
permissions_updater.cc 22 #include "extensions/common/extension.h"
38 const Extension* extension, const PermissionSet* permissions) {
40 extension->GetActivePermissions());
46 UpdateActivePermissions(extension, total.get());
48 // Update the granted permissions so we don't auto-disable the extension.
49 GrantActivePermissions(extension);
51 NotifyPermissionsUpdated(ADDED, extension, added.get());
55 const Extension* extension, const PermissionSet* permissions)
    [all...]
  /external/chromium_org/chrome/browser/resources/extensions/
extension_info.html 12 <script src="chrome://extension-info/extension_info.js"></script>
17 <div id="extension-item">
18 <div id="extension-details">
19 <div id="extension-title-running"></div>
21 <span id="extension-last-updated" i18n-content="lastUpdated"></span>
22 <span id="extension-update-time" i18n-content="installTime"></span>
24 <p id="extension-description" i18n-content="description"></p>
28 <script src="chrome://extension-info/strings.js"></script>
  /external/chromium_org/chrome/browser/resources/sync_file_system_internals/
extension_statuses.html 7 <td>Extension Name</td>
12 <tbody id="extension-entries"></tbody>
  /external/chromium_org/chrome/browser/ui/app_list/
extension_uninstaller.cc 11 #include "extensions/common/extension.h"
26 const extensions::Extension* extension = local
29 if (!extension) {
35 dialog_->ConfirmUninstall(extension);
41 const extensions::Extension* extension = local
43 if (extension) {
  /external/chromium_org/chrome/common/extensions/api/managed_mode_private/
managed_mode_handler.h 12 #include "extensions/common/extension.h"
19 struct ManagedModeInfo : public Extension::ManifestData {
23 static bool IsContentPack(const Extension* extension);
24 static ExtensionResource GetContentPackSiteList(const Extension* extension);
36 virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE;
  /external/chromium_org/chrome/common/extensions/api/omnibox/
omnibox_handler.cc 11 #include "extensions/common/extension.h"
25 const std::string& OmniboxInfo::GetKeyword(const Extension* extension) {
27 extension->GetManifestData(manifest_keys::kOmnibox));
37 bool OmniboxHandler::Parse(Extension* extension, base::string16* error) {
40 if (!extension->manifest()->GetDictionary(manifest_keys::kOmnibox,
47 extension->SetManifestData(manifest_keys::kOmnibox, info.release());
  /external/chromium_org/chrome/common/extensions/api/sockets/
sockets_manifest_handler.cc 9 #include "extensions/common/extension.h"
18 bool SocketsManifestHandler::Parse(Extension* extension,
21 CHECK(extension->manifest()->Get(manifest_keys::kSockets, &sockets));
27 extension->SetManifestData(manifest_keys::kSockets, data.release());
36 const Extension* extension) {
37 SocketsManifestData* data = SocketsManifestData::Get(extension);
  /external/chromium_org/chrome/common/extensions/api/system_indicator/
system_indicator_handler.cc 11 #include "extensions/common/extension.h"
24 bool SystemIndicatorHandler::Parse(Extension* extension,
27 if (!extension->manifest()->GetDictionary(
34 extension, system_indicator_value, error);
40 // TODO(dewittj) Add this for all extension action APIs.
41 PermissionsData::GetInitialAPIPermissions(extension)->insert(
44 ActionInfo::SetSystemIndicatorInfo(extension, action_info.release());
  /external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/
manifest.json 2 "name" : "Block/allow third-party cookies API example extension",
4 "description" : "Sample extension which demonstrates how to access a preference.",
  /external/chromium_org/chrome/common/extensions/docs/examples/api/preferences/enableReferrer/
manifest.json 2 "name" : "Block/allow referrer API example extension",
4 "description" : "Sample extension which demonstrates how to access a preference.",
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
idle.html 2 <p>You must declare the "idle" permission in your extension's manifest to use the idle API.
8 "name": "My extension",
  /external/chromium_org/chrome/common/extensions/docs/templates/json/
strings.json 6 "extension": "extension",
  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_options_unittest.cc 16 scoped_refptr<extensions::Extension> extension; local
19 extension = LoadAndExpectSuccess("hosted_app_absolute_options.json");
21 extensions::ManifestURL::GetOptionsPage(extension.get())
25 extensions::ManifestURL::GetOptionsPage(extension.get()).host().c_str());
27 extensions::ManifestURL::GetOptionsPage(extension.get())
30 extension = LoadAndExpectSuccess("platform_app_with_options_page.json");
31 EXPECT_TRUE(extensions::ManifestURL::GetOptionsPage(extension.get())
extension_manifests_override_unittest.cc 23 scoped_refptr<extensions::Extension> extension; local
25 extension = LoadAndExpectSuccess("override_new_tab.json");
26 EXPECT_EQ(extension->url().spec() + "newtab.html",
27 extensions::URLOverrides::GetChromeURLOverrides(extension.get())
30 extension = LoadAndExpectSuccess("override_history.json");
31 EXPECT_EQ(extension->url().spec() + "history.html",
32 extensions::URLOverrides::GetChromeURLOverrides(extension.get())
extension_manifests_update_unittest.cc 10 using extensions::Extension;
21 Extension::NO_FLAGS),
23 Extension::NO_FLAGS),
25 Extension::NO_FLAGS),
27 Extension::NO_FLAGS)
35 extensions::Manifest::INTERNAL, Extension::NO_FLAGS),
37 extensions::Manifest::INTERNAL, Extension::NO_FLAGS),
39 extensions::Manifest::INTERNAL, Extension::NO_FLAGS)
  /external/chromium_org/chrome/renderer/
external_extension.h 11 class Extension;
18 static v8::Extension* Get();
  /external/chromium_org/chrome/test/chromedriver/extension/
manifest.json 3 "name": "Chrome Automation Extension",
6 "description": "Exposes extension APIs for automating Chrome",
  /external/chromium_org/gpu/GLES2/extensions/CHROMIUM/
CHROMIUM_depth_texture.txt 25 This extension is written against the OpenGL ES 2.0.25 specification
31 This extension is the same as ANGLE_depth_texture except it does
  /external/chromium_org/third_party/icu/source/test/testdata/
test4x.ucm 8 # Test file for MBCS conversion extension with four-byte codepage data.
15 # test loading an extension table from the testdata package
  /external/chromium_org/tools/gyp/test/errors/
duplicate_rule.gyp 13 'extension': '',
17 'extension': '',
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/chromeos_login_ext/
manifest.json 2 // chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/
8 "description": "GAIA Dummy Component Extension",
  /external/clang/test/SemaCXX/
PR10458.cpp 5 for (auto &i : arr) { // expected-warning {{'auto' type specifier is a C++11 extension}} expected-warning {{range-based for loop is a C++11 extension}}
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/data/21/fragment/
fragment.xml 10 <extension point = "org.eclipse.pde.core.source">
12 </extension>
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/data/21/plugin/
plugin.xml 8 <extension point = "org.eclipse.pde.core.source">
10 </extension>

Completed in 454 milliseconds

1 2 3 4 5 6 7 8 91011>>