Index: chrome/browser/ui/cocoa/extensions/extension_keybinding_registry_cocoa.mm |
diff --git a/chrome/browser/ui/cocoa/extensions/extension_keybinding_registry_cocoa.mm b/chrome/browser/ui/cocoa/extensions/extension_keybinding_registry_cocoa.mm |
index 35ff743009f10fc0b84d7941f089eae4da8d94ab..ef45ec529eb7028daad9f038563a8275e7d07078 100644 |
--- a/chrome/browser/ui/cocoa/extensions/extension_keybinding_registry_cocoa.mm |
+++ b/chrome/browser/ui/cocoa/extensions/extension_keybinding_registry_cocoa.mm |
@@ -61,9 +61,9 @@ bool ExtensionKeybindingRegistryCocoa::ProcessKeyEvent( |
int type = 0; |
if (command_name == values::kPageActionCommandEvent) { |
- type = chrome::NOTIFICATION_EXTENSION_COMMAND_PAGE_ACTION_MAC; |
+ type = extensions::NOTIFICATION_EXTENSION_COMMAND_PAGE_ACTION_MAC; |
} else if (command_name == values::kBrowserActionCommandEvent) { |
- type = chrome::NOTIFICATION_EXTENSION_COMMAND_BROWSER_ACTION_MAC; |
+ type = extensions::NOTIFICATION_EXTENSION_COMMAND_BROWSER_ACTION_MAC; |
} else { |
// Not handled by using notifications. Route it through the Browser Event |
// Router using the base class (it will iterate through all targets). |