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

Unified Diff: extensions/browser/extension_registry.h

Issue 207613002: Cleanup: Remove NOTIFICATION_EXTENSION_UNLOADED usage in MediaScanManager. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 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: extensions/browser/extension_registry.h
===================================================================
--- extensions/browser/extension_registry.h (revision 259942)
+++ extensions/browser/extension_registry.h (working copy)
@@ -36,7 +36,7 @@
EVERYTHING = (1 << 4) - 1,
};
- ExtensionRegistry();
+ explicit ExtensionRegistry(content::BrowserContext* browser_context);
virtual ~ExtensionRegistry();
// Returns the instance for the given |browser_context|.
@@ -137,6 +137,8 @@
ObserverList<ExtensionRegistryObserver> observers_;
+ content::BrowserContext* const browser_context_;
+
DISALLOW_COPY_AND_ASSIGN(ExtensionRegistry);
};

Powered by Google App Engine
This is Rietveld 408576698