summaryrefslogtreecommitdiffstats
path: root/extensions/browser/extension_registry.h
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/browser/extension_registry.h')
-rw-r--r--extensions/browser/extension_registry.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/browser/extension_registry.h b/extensions/browser/extension_registry.h
index 89256e15..ec15f2e 100644
--- a/extensions/browser/extension_registry.h
+++ b/extensions/browser/extension_registry.h
@@ -10,7 +10,7 @@
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "base/observer_list.h"
-#include "components/browser_context_keyed_service/browser_context_keyed_service.h"
+#include "components/keyed_service/core/keyed_service.h"
#include "extensions/common/extension_set.h"
namespace content {
@@ -24,7 +24,7 @@ class ExtensionRegistryObserver;
// ExtensionRegistry holds sets of the installed extensions for a given
// BrowserContext. An incognito browser context and its master browser context
// share a single registry.
-class ExtensionRegistry : public BrowserContextKeyedService {
+class ExtensionRegistry : public KeyedService {
public:
// Flags to pass to GetExtensionById() to select which sets to look in.
enum IncludeFlag {
@@ -108,7 +108,7 @@ class ExtensionRegistry : public BrowserContextKeyedService {
void SetDisabledModificationCallback(
const ExtensionSet::ModificationCallback& callback);
- // BrowserContextKeyedService implementation:
+ // KeyedService implementation:
virtual void Shutdown() OVERRIDE;
private: