OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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_UI_COCOA_BROWSER_WINDOW_COMMAND_HANDLER_H_ | |
6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COMMAND_HANDLER_H_ | |
7 | |
8 #import <Cocoa/Cocoa.h> | |
tapted
2015/09/04 02:56:24
nit: Foundation/Foundation.h for NSObject
jackhou1
2015/09/04 06:13:58
Done.
| |
9 | |
10 #import "ui/base/cocoa/command_dispatcher.h" | |
11 | |
12 // Implement UserInterfaceItemCommandHandler by validating items using global | |
13 // chrome:: functions and executing commands with chrome::ExecuteCommand(). | |
14 @interface BrowserWindowCommandHandler | |
15 : NSObject<UserInterfaceItemCommandHandler> | |
tapted
2015/09/04 02:56:24
I wonder... does this even need to be NSObject? Ca
jackhou1
2015/09/04 06:13:58
It can be C++, but I'm not sure if there's much be
| |
16 @end | |
17 | |
18 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COMMAND_HANDLER_H_ | |
OLD | NEW |