| 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 b97b427505c52f7041378cf3ead8dd2dcd507b44..b961d14e3db6f216587e48ef5446a7d4fdfd7da0 100644
|
| --- a/chrome/browser/extensions/api/input_ime/input_ime_api.cc
|
| +++ b/chrome/browser/extensions/api/input_ime/input_ime_api.cc
|
| @@ -778,7 +778,7 @@ bool InputImeKeyEventHandledFunction::RunImpl() {
|
| InputImeAPI::InputImeAPI(content::BrowserContext* context)
|
| : profile_(Profile::FromBrowserContext(context)) {
|
| registrar_.Add(this,
|
| - chrome::NOTIFICATION_EXTENSION_LOADED,
|
| + chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
|
| content::Source<Profile>(profile_));
|
| registrar_.Add(this,
|
| chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| @@ -804,7 +804,7 @@ BrowserContextKeyedAPIFactory<InputImeAPI>* InputImeAPI::GetFactoryInstance() {
|
| void InputImeAPI::Observe(int type,
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) {
|
| - if (type == chrome::NOTIFICATION_EXTENSION_LOADED) {
|
| + if (type == chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED) {
|
| const Extension* extension =
|
| content::Details<const Extension>(details).ptr();
|
| const std::vector<InputComponentInfo>* input_components =
|
|
|