| Index: chrome/browser/ui/cocoa/chrome_event_processing_window.h
|
| diff --git a/chrome/browser/ui/cocoa/chrome_event_processing_window.h b/chrome/browser/ui/cocoa/chrome_event_processing_window.h
|
| index b9a20e9abc2638cf34713889990c04e4f0d43ccf..0f6dfb1dfc2565757528a5cc86284cdcd07697d8 100644
|
| --- a/chrome/browser/ui/cocoa/chrome_event_processing_window.h
|
| +++ b/chrome/browser/ui/cocoa/chrome_event_processing_window.h
|
| @@ -26,19 +26,10 @@
|
| // Returns |YES| if |event| has been handled.
|
| - (BOOL)redispatchKeyEvent:(NSEvent*)event;
|
|
|
| -// See global_keyboard_shortcuts_mac.h for details on the next two functions.
|
| -
|
| -// Checks if |event| is a window keyboard shortcut. If so, dispatches it to the
|
| -// window controller's |executeCommand:| and returns |YES|.
|
| -- (BOOL)handleExtraWindowKeyboardShortcut:(NSEvent*)event;
|
| -
|
| -// Checks if |event| is a delayed window keyboard shortcut. If so, dispatches
|
| -// it to the window controller's |executeCommand:| and returns |YES|.
|
| -- (BOOL)handleDelayedWindowKeyboardShortcut:(NSEvent*)event;
|
| -
|
| -// Checks if |event| is a browser keyboard shortcut. If so, dispatches it to the
|
| -// window controller's |executeCommand:| and returns |YES|.
|
| -- (BOOL)handleExtraBrowserKeyboardShortcut:(NSEvent*)event;
|
| +// Checks if |event| is a window, delayed window, or browser keyboard shortcut.
|
| +// (See global_keyboard_shortcuts_mac.h for details). If so, execute the
|
| +// associated command. Returns YES if the event was handled.
|
| +- (BOOL)handleExtraKeyboardShortcut:(NSEvent*)event;
|
|
|
| // Override, so we can handle global keyboard events.
|
| - (BOOL)performKeyEquivalent:(NSEvent*)theEvent;
|
|
|