| Index: chrome/browser/extensions/api/runtime/runtime_api.cc
|
| diff --git a/chrome/browser/extensions/api/runtime/runtime_api.cc b/chrome/browser/extensions/api/runtime/runtime_api.cc
|
| index 562a76dd0e8d1df4db64c7b7bc7592fcd3592bff..465295a105e45d549e0bfdfda976ffe1653e4781 100644
|
| --- a/chrome/browser/extensions/api/runtime/runtime_api.cc
|
| +++ b/chrome/browser/extensions/api/runtime/runtime_api.cc
|
| @@ -139,11 +139,11 @@ std::string GetUninstallURL(ExtensionPrefs* prefs,
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
|
|
| -static base::LazyInstance<ProfileKeyedAPIFactory<RuntimeAPI> > g_factory =
|
| - LAZY_INSTANCE_INITIALIZER;
|
| +static base::LazyInstance<BrowserContextKeyedAPIFactory<RuntimeAPI> >
|
| + g_factory = LAZY_INSTANCE_INITIALIZER;
|
|
|
| // static
|
| -ProfileKeyedAPIFactory<RuntimeAPI>* RuntimeAPI::GetFactoryInstance() {
|
| +BrowserContextKeyedAPIFactory<RuntimeAPI>* RuntimeAPI::GetFactoryInstance() {
|
| return g_factory.Pointer();
|
| }
|
|
|
|
|