Index: chrome/browser/extensions/api/input/input.cc |
diff --git a/chrome/browser/extensions/api/input/input.cc b/chrome/browser/extensions/api/input/input.cc |
index d0a8ab599ba666298c8085e0c54bbc701ba9c0a7..3b81372b9fc8099442193a6dc0b0050112c9a960 100644 |
--- a/chrome/browser/extensions/api/input/input.cc |
+++ b/chrome/browser/extensions/api/input/input.cc |
@@ -159,11 +159,11 @@ InputAPI::InputAPI(content::BrowserContext* context) {} |
InputAPI::~InputAPI() { |
} |
-static base::LazyInstance<ProfileKeyedAPIFactory<InputAPI> > |
-g_factory = LAZY_INSTANCE_INITIALIZER; |
+static base::LazyInstance<BrowserContextKeyedAPIFactory<InputAPI> > g_factory = |
+ LAZY_INSTANCE_INITIALIZER; |
// static |
-ProfileKeyedAPIFactory<InputAPI>* InputAPI::GetFactoryInstance() { |
+BrowserContextKeyedAPIFactory<InputAPI>* InputAPI::GetFactoryInstance() { |
return g_factory.Pointer(); |
} |