| Index: chrome/browser/extensions/api/input_ime/input_ime_api.cc
|
| diff --git a/chrome/browser/extensions/api/input_ime/input_ime_api.cc b/chrome/browser/extensions/api/input_ime/input_ime_api.cc
|
| index c9243ed612c9d055c391db328aafaaa8de494a92..b5ada22b2465f83fe47a88e2be4d548b50bad39c 100644
|
| --- a/chrome/browser/extensions/api/input_ime/input_ime_api.cc
|
| +++ b/chrome/browser/extensions/api/input_ime/input_ime_api.cc
|
| @@ -791,11 +791,11 @@ InputImeAPI::InputImeAPI(content::BrowserContext* context)
|
| InputImeAPI::~InputImeAPI() {
|
| }
|
|
|
| -static base::LazyInstance<ProfileKeyedAPIFactory<InputImeAPI> >
|
| -g_factory = LAZY_INSTANCE_INITIALIZER;
|
| +static base::LazyInstance<BrowserContextKeyedAPIFactory<InputImeAPI> >
|
| + g_factory = LAZY_INSTANCE_INITIALIZER;
|
|
|
| // static
|
| -ProfileKeyedAPIFactory<InputImeAPI>* InputImeAPI::GetFactoryInstance() {
|
| +BrowserContextKeyedAPIFactory<InputImeAPI>* InputImeAPI::GetFactoryInstance() {
|
| return g_factory.Pointer();
|
| }
|
|
|
|
|