OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_COCOA_APPS_APP_SHIM_MENU_CONTROLLER_MAC_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_APPS_APP_SHIM_MENU_CONTROLLER_MAC_H_ |
6 #define CHROME_BROWSER_UI_COCOA_APPS_APP_SHIM_MENU_CONTROLLER_MAC_H_ | 6 #define CHROME_BROWSER_UI_COCOA_APPS_APP_SHIM_MENU_CONTROLLER_MAC_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
10 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
(...skipping 18 matching lines...) Expand all Loading... | |
29 base::scoped_nsobject<DoppelgangerMenuItem> openDoppelganger_; | 29 base::scoped_nsobject<DoppelgangerMenuItem> openDoppelganger_; |
30 base::scoped_nsobject<DoppelgangerMenuItem> allToFrontDoppelganger_; | 30 base::scoped_nsobject<DoppelgangerMenuItem> allToFrontDoppelganger_; |
31 // Menu items for the currently focused packaged app. | 31 // Menu items for the currently focused packaged app. |
32 base::scoped_nsobject<NSMenuItem> appMenuItem_; | 32 base::scoped_nsobject<NSMenuItem> appMenuItem_; |
33 base::scoped_nsobject<NSMenuItem> fileMenuItem_; | 33 base::scoped_nsobject<NSMenuItem> fileMenuItem_; |
34 base::scoped_nsobject<NSMenuItem> editMenuItem_; | 34 base::scoped_nsobject<NSMenuItem> editMenuItem_; |
35 base::scoped_nsobject<NSMenuItem> windowMenuItem_; | 35 base::scoped_nsobject<NSMenuItem> windowMenuItem_; |
36 // Additional menu items for hosted apps. | 36 // Additional menu items for hosted apps. |
37 base::scoped_nsobject<NSMenuItem> viewMenuItem_; | 37 base::scoped_nsobject<NSMenuItem> viewMenuItem_; |
38 base::scoped_nsobject<NSMenuItem> historyMenuItem_; | 38 base::scoped_nsobject<NSMenuItem> historyMenuItem_; |
39 base::scoped_nsobject<NSMenuItem> closeWindowDuplicateMenuItem_; | |
jackhou1
2015/02/04 04:40:04
Put these above "// Menu items for the..." and add
mitchellj
2015/02/04 22:33:40
Done.
| |
40 base::scoped_nsobject<NSMenuItem> closeTabSourceMenuItem_; | |
39 } | 41 } |
40 | 42 |
41 @end | 43 @end |
42 | 44 |
43 #endif // CHROME_BROWSER_UI_COCOA_APPS_APP_SHIM_MENU_CONTROLLER_MAC_H_ | 45 #endif // CHROME_BROWSER_UI_COCOA_APPS_APP_SHIM_MENU_CONTROLLER_MAC_H_ |
OLD | NEW |