| Index: chrome/browser/ui/webui/extensions/extension_settings_handler.cc
|
| diff --git a/chrome/browser/ui/webui/extensions/extension_settings_handler.cc b/chrome/browser/ui/webui/extensions/extension_settings_handler.cc
|
| index bce514598a8ae7d8576c3e46aa935116ca6450f1..37ed5a45c02c329d77a044811ee794d1634da447 100644
|
| --- a/chrome/browser/ui/webui/extensions/extension_settings_handler.cc
|
| +++ b/chrome/browser/ui/webui/extensions/extension_settings_handler.cc
|
| @@ -658,7 +658,7 @@ void ExtensionSettingsHandler::Observe(
|
| HandleLoadRetryMessage(retry_and_path->first, retry_and_path->second);
|
| break;
|
| }
|
| - case chrome::NOTIFICATION_EXTENSION_LOADED: {
|
| + case chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED: {
|
| const base::FilePath& path =
|
| content::Details<const Extension>(details).ptr()->path();
|
| if (IndexOfLoadingPath(path) != -1)
|
| @@ -1136,7 +1136,8 @@ void ExtensionSettingsHandler::MaybeRegisterForNotifications() {
|
| Profile* profile = Profile::FromWebUI(web_ui());
|
|
|
| // Register for notifications that we need to reload the page.
|
| - registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_LOADED,
|
| + registrar_.Add(this,
|
| + chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
|
| content::Source<Profile>(profile));
|
| registrar_.Add(this, chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| content::Source<Profile>(profile));
|
|
|