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

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

Issue 23636002: Fixed how Apps Developer Tools is enabled/disabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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 01fabca9f20b96d4364c650723413a1406a0031f..941ae31a8c5d938dfb848cc1e7b10a3d924b0694 100644
--- a/chrome/browser/extensions/extension_service.h
+++ b/chrome/browser/extensions/extension_service.h
@@ -119,6 +119,7 @@ class ExtensionServiceInterface : public syncer::SyncableService {
virtual void UnloadExtension(
const std::string& extension_id,
extension_misc::UnloadedExtensionReason reason) = 0;
+ virtual void RemoveComponentExtension(const std::string& extension_id) = 0;
virtual void SyncExtensionChangeIfNeeded(
const extensions::Extension& extension) = 0;
@@ -377,6 +378,10 @@ class ExtensionService
const std::string& extension_id,
extension_misc::UnloadedExtensionReason reason) OVERRIDE;
+ // Remove the specified component extension.
+ virtual void RemoveComponentExtension(const std::string& extension_id)
+ OVERRIDE;
+
// Unload all extensions. This is currently only called on shutdown, and
// does not send notifications.
void UnloadAllExtensions();

Powered by Google App Engine
This is Rietveld 408576698