Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: chrome/browser/cocoa/browser_window_impl.h

Issue 149325: Add facitility for Global Keyboard shortcuts. (Closed)
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_COCOA_BROWSER_WINDOW_IMPL_H_
6 #define CHROME_BROWSER_COCOA_BROWSER_WINDOW_IMPL_H_
7
8 #import <Cocoa/Cocoa.h>
9
10 // Cocoa class representing a Chrome browser window.
pink (ping after 24hrs) 2009/07/08 13:48:17 state why we are overriding NSWindow. For what pur
11 @interface ChromeBrowserWindowImpl : NSWindow
pink (ping after 24hrs) 2009/07/08 13:48:17 isn't calling it an "impl" redundant? In fact, thi
12
13 // Override, so we can handle global keyboard events.
14 - (BOOL)performKeyEquivalent:(NSEvent *)theEvent;
15 @end
16
17 #endif // CHROME_BROWSER_COCOA_BROWSER_WINDOW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698