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

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

Issue 93513006: Allow re-enabling of DISABLE_NOT_VERIFIED extensions if appropriate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix a few nits Created 7 years 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 f6a2f5692256d064d41049e1988de7f1bafe5f07..f838465564fbb373dba8ab096a7407ddd4c5809d 100644
--- a/chrome/browser/extensions/extension_service.h
+++ b/chrome/browser/extensions/extension_service.h
@@ -127,9 +127,9 @@ class ExtensionService
public content::NotificationObserver,
public extensions::Blacklist::Observer {
public:
- // Returns the Extension of an extension from a given url or NULL if the url
- // doesn't belong to an installed extension. This may be a hosted app extent
- // or a chrome-extension:// url.
+ // Returns the Extension for a given url or NULL if the url doesn't belong to
+ // an installed extension. This may be a hosted app extent or a
+ // chrome-extension:// url.
const extensions::Extension* GetInstalledExtensionByUrl(
const GURL& url) const;
@@ -209,6 +209,13 @@ class ExtensionService
// Initialize and start all installed extensions.
void Init();
+ // Attempts to verify all extensions using the InstallVerifier.
+ void VerifyAllExtensions();
+
+ // Once the verifier work is finished, we may want to re-check management
+ // policy if |success| indicates the verifier got a new signature back.
+ void FinishVerifyAllExtensions(bool success);
+
// Called when the associated Profile is going to be destroyed.
void Shutdown();
« 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