Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(750)

Unified Diff: chrome/browser/extensions/extension_service.h

Issue 14490002: Start refactoring extension reloading to avoid redundant reloads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean up and fix DISABLE_UNKNOWN_FROM_SYNC logic Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_service.h
diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
index 5960dad92347be48f64ffe4ed9aa36db5233c230..a81a5f95b773887f337f644db06d2a6a78d3c3ec 100644
--- a/chrome/browser/extensions/extension_service.h
+++ b/chrome/browser/extensions/extension_service.h
@@ -450,10 +450,6 @@ class ExtensionService
virtual const extensions::Extension* GetPendingExtensionUpdate(
const std::string& extension_id) const OVERRIDE;
- // Initializes the |extension|'s active permission set and disables the
- // extension if the privilege level has increased (e.g., due to an upgrade).
- void InitializePermissions(const extensions::Extension* extension);
-
// Go through each extension and unload those that are not allowed to run by
// management policy providers (ie. network admin and Google-managed
// blacklist).
@@ -763,6 +759,16 @@ class ExtensionService
void ReloadExtensionWithEvents(const std::string& extension_id,
int events);
+ // Updates the |extension|'s active permission set to include only permissions
+ // currently requested by the extension and all the permissions required by
+ // the extension.
+ void UpdateActivePermissions(const extensions::Extension* extension);
+
+ // Disables the extension if the privilege level has increased
+ // (e.g., due to an upgrade).
+ void CheckPermissionsIncrease(const extensions::Extension* extension,
+ bool is_upgrade);
+
// Returns true if the app with id |extension_id| has any shell windows open.
bool HasShellWindows(const std::string& extension_id);
@@ -908,11 +914,8 @@ class ExtensionService
typedef std::map<std::string, base::FilePath> UnloadedExtensionPathMap;
UnloadedExtensionPathMap unloaded_extension_paths_;
- // Map disabled extensions' ids to their paths. When a temporarily loaded
- // extension is disabled before it is reloaded, keep track of the path so that
- // it can be re-enabled upon a successful load.
- typedef std::map<std::string, base::FilePath> DisabledExtensionPathMap;
- DisabledExtensionPathMap disabled_extension_paths_;
+ // Store the ids of reloading extensions.
+ std::set<std::string> reloading_extensions_;
// Map of inspector cookies that are detached, waiting for an extension to be
// reloaded.
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698