Lines Matching full:extension
34 #include "chrome/common/extensions/extension.h"
62 virtual const Extension* GetExtensionById(const std::string& id,
90 // extension match the state in |extension_sync_data| (including
91 // installing/uninstalling the extension).
102 // GetInitialSyncData(bool (*filter)(Extension),
118 // Information about a registered component extension.
126 // The extension's manifest. This is required for component extensions so
130 // Directory where the extension is stored.
144 // Determine if a given extension download should be treated as if it came
150 // Determine if the downloaded extension came from the theme mini-gallery,
154 // Returns the Extension of hosted or packaged apps, NULL otherwise.
155 const Extension* GetInstalledApp(const GURL& url);
160 // Attempts to uninstall an extension from a given ExtensionService. Returns
161 // true iff the target extension exists.
182 // Registers an extension to be loaded as a component extension.
191 // Whether this extension can run in an incognito window.
196 // Returns true if the given extension can see events and data from another
198 bool CanCrossIncognito(const Extension* extension);
200 // Whether this extension can inject scripts into pages with file URLs.
201 bool AllowFileAccess(const Extension* extension);
202 // Will reload the extension since this permission is applied at loading time
204 void SetAllowFileAccess(const Extension* extension, bool allow);
207 bool GetBrowserActionVisibility(const Extension* extension);
208 void SetBrowserActionVisibility(const Extension* extension, bool visible);
213 bool IsBackgroundPageReady(const Extension* extension);
214 void SetBackgroundPageReady(const Extension* extension);
216 // Getter and setter for the flag that specifies whether the extension is
218 bool IsBeingUpgraded(const Extension* extension);
219 void SetBeingUpgraded(const Extension* extension, bool value);
221 // Getter for the extension's runtime data PropertyBag.
222 PropertyBag* GetPropertyBag(const Extension* extension);
227 // Start up the extension event routers.
230 // Look up an extension by ID.
231 virtual const Extension* GetExtensionById(const std::string& id,
234 // Looks up a terminated (crashed) extension by ID. GetExtensionById does
236 virtual const Extension* GetTerminatedExtension(const std::string& id);
238 // Updates a currently-installed extension with the contents from
246 // Reloads the specified extension.
249 // Uninstalls the specified extension. Callers should only call this method
263 // Enable or disable an extension. No action if the extension is already
268 // Updates the |extension|'s granted permissions lists to include all
269 // permissions in the |extension|'s manifest.
270 void GrantPermissions(const Extension* extension);
272 // Updates the |extension|'s granted permissions lists to include all
273 // permissions in the |extension|'s manifest and re-enables the
274 // extension.
275 void GrantPermissionsAndEnableExtension(const Extension* extension);
277 // Loads the extension from the directory |extension_path|.
283 // Loads particular component extension.
284 const Extension* LoadComponentExtension(const ComponentExtensionInfo& info);
299 // Unload the specified extension.
310 // Scan the extension directory and clean up the cruft.
314 const Extension* GetWebStoreApp();
316 // Lookup an extension by |url|.
317 const Extension* GetExtensionByURL(const GURL& url);
319 // If there is an extension for the specified url it is returned. Otherwise
320 // returns the extension whose web extent contains |url|.
321 const Extension* GetExtensionByWebExtent(const GURL& url);
323 // Returns an extension that contains any URL that overlaps with the given
325 const Extension* GetExtensionByOverlappingWebExtent(
328 // Returns true if |url| should get extension api bindings and be permitted
329 // to make api calls. Note that this is independent of what extension
330 // permissions the given extension has been granted.
333 // Returns the icon to display in the omnibox for the given extension.
337 // extension.
343 // Adds |extension| to this ExtensionService and notifies observers than an
344 // extension has been loaded. Called by the backend after an extension has
346 void AddExtension(const Extension* extension);
348 // Called by the backend when an extension has been installed.
349 void OnExtensionInstalled(const Extension* extension);
351 // Checks if the privileges requested by |extension| have increased, and if
352 // so, disables the extension and prompts the user to approve the change.
353 void DisableIfPrivilegeIncrease(const Extension* extension);
360 // Go through each extension and unload those that the network admin has
393 // Whether the extension service is ready.
410 // Notify the frontend that there was an error loading an extension.
421 // For the extension in |version_path| with |id|, check to see if it's an
422 // externally managed extension. If so, uninstall it.
436 Extension::Location location);
440 Extension::Location location);
460 const Extension* e, const char* histogram);
466 // Contains Extension data that can change during the life of the process,
472 // True while the extension is being upgraded.
494 // Clear all persistent data that may have been stored by the extension.
497 // Look up an extension by ID, optionally including either or both of enabled
499 const Extension* GetExtensionByIdInternal(const std::string& id,
505 void TrackTerminatedExtension(const Extension* extension);
508 // Handles sending notification that |extension| was loaded.
509 void NotifyExtensionLoaded(const Extension* extension);
511 // Handles sending notification that |extension| was unloaded.
512 void NotifyExtensionUnloaded(const Extension* extension,
515 // Helper that updates the active extension list used for crash reporting.
518 // Helper method. Loads extension from prefs.
552 // Used to quickly check if an extension was terminated.
558 // The map of extension IDs to their runtime data.
567 // Whether to notify users when they attempt to install an extension.
580 // Our extension updater, if updates are turned on.
587 // extension is unloaded, we lose the infomation about it and don't have
588 // any in the extension preferences file.
593 // extension is disabled before it is reloaded, keep track of the path so that
598 // Map of inspector cookies that are detached, waiting for an extension to be
613 // List of registered component extensions (see Extension::Location).
627 // A collection of external extension providers. Each provider reads
628 // a source of external extension information. Examples include the
633 // extension URL is found. Used in CheckForExternalUpdates() to see