| Index: chrome/browser/extensions/extension_keybinding_registry.cc
|
| diff --git a/chrome/browser/extensions/extension_keybinding_registry.cc b/chrome/browser/extensions/extension_keybinding_registry.cc
|
| index 7928787c1d3a7ac7fd0f91a978cd6bc59e234389..e4f08c30fccde9eb171f10596dc0412fe6401dcd 100644
|
| --- a/chrome/browser/extensions/extension_keybinding_registry.cc
|
| +++ b/chrome/browser/extensions/extension_keybinding_registry.cc
|
| @@ -29,7 +29,7 @@ ExtensionKeybindingRegistry::ExtensionKeybindingRegistry(
|
| chrome::NOTIFICATION_EXTENSION_LOADED,
|
| content::Source<Profile>(profile_->GetOriginalProfile()));
|
| registrar_.Add(this,
|
| - chrome::NOTIFICATION_EXTENSION_UNLOADED,
|
| + chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| content::Source<Profile>(profile_->GetOriginalProfile()));
|
| registrar_.Add(this,
|
| chrome::NOTIFICATION_EXTENSION_COMMAND_ADDED,
|
| @@ -177,7 +177,7 @@ void ExtensionKeybindingRegistry::Observe(
|
| AddExtensionKeybinding(extension, std::string());
|
| break;
|
| }
|
| - case chrome::NOTIFICATION_EXTENSION_UNLOADED: {
|
| + case chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED: {
|
| const extensions::Extension* extension =
|
| content::Details<UnloadedExtensionInfo>(details)->extension;
|
| if (ExtensionMatchesFilter(extension))
|
|
|