| 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 958097a54108bf30e19b5330a5f5202e22d0b18e..623f78e5ff238c02da091604168a97f027480f5c 100644
|
| --- a/chrome/browser/extensions/extension_keybinding_registry.cc
|
| +++ b/chrome/browser/extensions/extension_keybinding_registry.cc
|
| @@ -26,7 +26,7 @@ ExtensionKeybindingRegistry::ExtensionKeybindingRegistry(
|
| extension_filter_(extension_filter),
|
| delegate_(delegate) {
|
| registrar_.Add(this,
|
| - chrome::NOTIFICATION_EXTENSION_LOADED,
|
| + chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED,
|
| content::Source<Profile>(profile_->GetOriginalProfile()));
|
| registrar_.Add(this,
|
| chrome::NOTIFICATION_EXTENSION_UNLOADED_DEPRECATED,
|
| @@ -170,7 +170,7 @@ void ExtensionKeybindingRegistry::Observe(
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) {
|
| switch (type) {
|
| - case chrome::NOTIFICATION_EXTENSION_LOADED: {
|
| + case chrome::NOTIFICATION_EXTENSION_LOADED_DEPRECATED: {
|
| const extensions::Extension* extension =
|
| content::Details<const extensions::Extension>(details).ptr();
|
| if (ExtensionMatchesFilter(extension))
|
|
|