Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |