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 <Foundation/Foundation.h> |
| 9 |
| 10 #import "ui/base/cocoa/user_interface_item_command_handler.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> |
| 16 @end |
| 17 |
| 18 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COMMAND_HANDLER_H_ |
OLD | NEW |