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

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

Issue 9718028: Allow autoupdate to update disabled extensions. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Synced Created 8 years, 9 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
Index: chrome/browser/extensions/extension_service.h
diff --git a/chrome/browser/extensions/extension_service.h b/chrome/browser/extensions/extension_service.h
index c459b341e0f0395e3998e05e837017ea7b198c3e..15eef4ef5aa76f792d34134c5b4214ba5917e973 100644
--- a/chrome/browser/extensions/extension_service.h
+++ b/chrome/browser/extensions/extension_service.h
@@ -90,6 +90,7 @@ class ExtensionServiceInterface : public SyncableService {
virtual ~ExtensionServiceInterface() {}
virtual const ExtensionSet* extensions() const = 0;
+ virtual const ExtensionSet* disabled_extensions() const = 0;
virtual PendingExtensionManager* pending_extension_manager() = 0;
// Install an update. Return true if the install can be started.
@@ -199,7 +200,7 @@ class ExtensionService
// Gets the list of currently installed extensions.
virtual const ExtensionSet* extensions() const OVERRIDE;
- const ExtensionSet* disabled_extensions() const;
+ virtual const ExtensionSet* disabled_extensions() const OVERRIDE;
const ExtensionSet* terminated_extensions() const;
// Retuns a set of all installed, disabled, and terminated extensions and
« no previous file with comments | « chrome/browser/extensions/extension_management_browsertest.cc ('k') | chrome/browser/extensions/extension_service_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698