HomeSort by relevance Sort by last modified time
    Searched refs:Extension (Results 1 - 25 of 388) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/extensions/
extension_disabled_infobar_delegate.h 9 class Extension;
13 // Shows UI to inform the user that an extension was disabled after upgrading
16 const Extension* extension);
18 // Shows the extension install dialog.
20 const Extension* extension);
convert_user_script.h 13 class Extension;
17 // Wraps the specified user script in an extension. The extension is created
18 // unpacked in the system temp dir. Returns a valid extension that the caller
22 // NOTE: The caller takes ownership of the directory at extension->path() on the
24 scoped_refptr<Extension> ConvertUserScriptToExtension(
gtk_theme_installed_infobar_delegate.h 13 class Extension;
21 const Extension* new_theme,
pending_extension_info.h 9 #include "chrome/common/extensions/extension.h"
13 // A pending extension is an extension that hasn't been installed yet
15 // update URL of a pending extension may be blank, in which case a
21 typedef bool (*ShouldAllowInstallPredicate)(const Extension&);
30 Extension::Location install_source);
38 // |should_allow_install| on an extension. After an extension is unpacked,
39 // this function is run. If it returns true, the extension is installed.
40 // If not, the extension is discarded. This allows creators o
    [all...]
extension_info_map_unittest.cc 9 #include "chrome/common/extensions/extension.h"
31 // Returns a barebones test Extension object with the given name.
32 static scoped_refptr<Extension> CreateExtension(const std::string& name) {
44 scoped_refptr<Extension> extension = Extension::Create( local
45 path.AppendASCII(name), Extension::INVALID, manifest,
46 Extension::STRICT_ERROR_CHECKS, &error);
47 EXPECT_TRUE(extension) << error;
49 return extension;
66 scoped_refptr<Extension> extension = Extension::Create( local
    [all...]
extension_special_storage_policy.h 16 class Extension;
32 void GrantRightsForExtension(const Extension* extension);
33 void RevokeRightsForExtension(const Extension* extension);
44 void Add(const Extension* extension);
45 void Remove(const Extension* extension);
50 typedef std::map<std::string, scoped_refptr<const Extension> > Extensions
    [all...]
convert_web_app.h 13 class Extension;
21 // Generates a version number for an extension from a time. The goal is to make
32 // Wraps the specified web app in an extension. The extension is created
33 // unpacked in the system temp dir. Returns a valid extension that the caller
37 // NOTE: The caller takes ownership of the directory at extension->path() on the
39 scoped_refptr<Extension> ConvertWebAppToExtension(
extension_install_dialog.h 14 class Extension;
21 const Extension* extension,
external_extension_provider_impl.h 22 // can be seen as a bridge between the extension system and an
37 Extension::Location crx_location,
38 Extension::Location download_location);
58 Extension::Location* location,
74 const Extension::Location crx_location_;
78 const Extension::Location download_location_;
extension_install_ui.h 18 class Extension;
24 // Displays all the UI around extension installation and uninstallation.
59 virtual void ConfirmInstall(Delegate* delegate, const Extension* extension);
65 virtual void ConfirmReEnable(Delegate* delegate, const Extension* extension);
68 virtual void OnInstallSuccess(const Extension* extension, SkBitmap* icon);
85 const Extension* new_theme, Profile* profile);
101 const Extension* new_theme
    [all...]
extension_toolbar_model.h 10 #include "chrome/common/extensions/extension.h"
31 // An extension with a browser action button has been added, and should go
33 virtual void BrowserActionAdded(const Extension* extension, int index) {}
35 // The browser action button for |extension| should no longer show.
36 virtual void BrowserActionRemoved(const Extension* extension) {}
38 // The browser action button for |extension| has been moved to |index|.
39 virtual void BrowserActionMoved(const Extension* extension, int index) {
    [all...]
extension_special_storage_policy.cc 8 #include "chrome/common/extensions/extension.h"
34 const Extension* extension) {
35 DCHECK(extension);
36 if (!extension->is_hosted_app() &&
37 !extension->HasApiPermission(Extension::kUnlimitedStoragePermission) &&
38 !extension->HasApiPermission(Extension::kFileBrowserHandlerPermission)) {
42 if (extension->is_hosted_app()
    [all...]
extension_uninstall_dialog.h 39 void ConfirmUninstall(Delegate* delegate, const Extension* extension);
45 const Extension* extension,
63 // The extension we are showing the UI for.
64 const Extension* extension_;
66 // Keeps track of extension images being loaded on the File thread for the
external_extension_provider_interface.h 12 #include "chrome/common/extensions/extension.h"
25 // ensure that |id| is a valid extension id (use Extension::IdIsValid(id)).
32 Extension::Location location) = 0;
37 Extension::Location location) = 0;
54 // registered extension found.
57 // Test if this provider has an extension with id |id| registered.
60 // Gets details of an extension by its id. Output params will be set only
65 Extension::Location* location,
extension_infobar_delegate.h 12 class Extension;
17 // plus monitor when the extension goes away.
32 const Extension* extension,
35 const Extension* extension() { return extension_; } function in class:ExtensionInfoBarDelegate
58 // The extension host we are showing the InfoBar for. The delegate needs to
67 const Extension* extension_;
  /external/chromium/chrome/browser/automation/
automation_extension_tracker.h 11 class Extension;
13 // Tracks an Extension. An Extension is removed on uninstall, not on disable.
15 : public AutomationResourceTracker<const Extension*> {
22 // extension added to the tracker. This is because the profile, not the
23 // extension, is the one who sends the notification about extension
26 virtual void AddObserver(const Extension* resource);
29 virtual void RemoveObserver(const Extension* resource);
33 // This is not true for the relevant extension notifications, so we have t
    [all...]
automation_extension_tracker.cc 8 #include "chrome/common/extensions/extension.h"
13 : AutomationResourceTracker<const Extension*>(automation) {
21 void AutomationExtensionTracker::AddObserver(const Extension* resource) {}
23 void AutomationExtensionTracker::RemoveObserver(const Extension* resource) {}
33 const Extension* extension = info->extension; local
38 // Remove this extension only if it is uninstalled, not just disabled.
39 CloseResource(extension);
  /external/e2fsprogs/contrib/python-uuid/
setup.py 2 from distutils.core import setup, Extension
4 uuid = Extension('e2fsprogs_uuid',
  /external/webkit/Source/WebKit/chromium/public/
WebScriptController.h 37 class Extension;
46 // Registers a v8 extension to be available on webpages. The three forms
47 // offer various restrictions on what types of contexts the extension is
49 // scheme will match. If extensionGroup is provided, the extension will only
53 // of the v8::Extension object passed.
54 WEBKIT_API static void registerExtension(v8::Extension*);
  /external/chromium/chrome/browser/
background_application_list_model.h 14 #include "chrome/common/extensions/extension.h"
33 // Invoked when data that the model associates with the extension, such as
35 virtual void OnApplicationDataChanged(const Extension* extension);
37 // Invoked when the model detects a previously unknown extension and/or when
38 // it no longer detects a previously known extension.
53 // Return the icon associated with |extension| or NULL. NULL indicates either
54 // that there is no icon associated with the extension, or that a pending
59 // NOTE: All icons are currently sized as Extension::EXTENSION_ICON_BITTY.
60 const SkBitmap* GetIcon(const Extension* extension)
    [all...]
background_mode_manager_chromeos.cc 15 const Extension* extension) {
  /external/chromium/chrome/browser/themes/
theme_service_factory.h 16 class Extension;
29 // Returns the Extension that implements the theme associated with
32 static const Extension* GetThemeForProfile(Profile* profile);
  /external/chromium/chrome/common/extensions/
extension_sidebar_utils.h 11 class Extension;
16 // Returns id of an extension owning a sidebar identified by |content_id|.
19 // Resolves |relative_path| relative to |extension|'s url.
23 const Extension* extension,
  /external/v8/src/extensions/
gc-extension.h 36 class GCExtension : public v8::Extension {
38 GCExtension() : v8::Extension("v8/gc", kSource) {}
  /external/chromium/chrome/browser/ui/cocoa/extensions/
extension_action_context_menu.h 16 class Extension;
28 // A context menu used by any extension UI components that require it.
31 // The extension that this menu belongs to. Weak.
32 const Extension* extension_;
34 // The extension action this menu belongs to. Weak.
37 // The browser profile of the window that contains this extension. Weak.
50 // Used to load the extension icon asynchronously on the I/O thread then show
55 // Initializes and returns a context menu for the given extension and profile.
56 - (id)initWithExtension:(const Extension*)extension
    [all...]

Completed in 881 milliseconds

1 2 3 4 5 6 7 8 91011>>