| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WRENCH_MENU_WRENCH_MENU_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_WRENCH_MENU_WRENCH_MENU_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_WRENCH_MENU_WRENCH_MENU_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_WRENCH_MENU_WRENCH_MENU_CONTROLLER_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #import "base/mac/scoped_nsobject.h" | 10 #import "base/mac/scoped_nsobject.h" |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 MenuTrackedRootView* zoomItem_; | 121 MenuTrackedRootView* zoomItem_; |
| 122 NSButton* zoomPlus_; | 122 NSButton* zoomPlus_; |
| 123 NSButton* zoomDisplay_; | 123 NSButton* zoomDisplay_; |
| 124 NSButton* zoomMinus_; | 124 NSButton* zoomMinus_; |
| 125 NSButton* zoomFullScreen_; | 125 NSButton* zoomFullScreen_; |
| 126 | 126 |
| 127 MenuTrackedRootView* toolbarActionsOverflowItem_; | 127 MenuTrackedRootView* toolbarActionsOverflowItem_; |
| 128 BrowserActionsContainerView* overflowActionsContainerView_; | 128 BrowserActionsContainerView* overflowActionsContainerView_; |
| 129 } | 129 } |
| 130 | 130 |
| 131 @property(assign, nonatomic) IBOutlet MenuTrackedRootView* editItem; | 131 @property(readonly, nonatomic) IBOutlet MenuTrackedRootView* editItem; |
| 132 @property(assign, nonatomic) IBOutlet NSButton* editCut; | 132 @property(readonly, nonatomic) IBOutlet NSButton* editCut; |
| 133 @property(assign, nonatomic) IBOutlet NSButton* editCopy; | 133 @property(readonly, nonatomic) IBOutlet NSButton* editCopy; |
| 134 @property(assign, nonatomic) IBOutlet NSButton* editPaste; | 134 @property(readonly, nonatomic) IBOutlet NSButton* editPaste; |
| 135 @property(assign, nonatomic) IBOutlet MenuTrackedRootView* zoomItem; | 135 @property(readonly, nonatomic) IBOutlet MenuTrackedRootView* zoomItem; |
| 136 @property(assign, nonatomic) IBOutlet NSButton* zoomPlus; | 136 @property(readonly, nonatomic) IBOutlet NSButton* zoomPlus; |
| 137 @property(assign, nonatomic) IBOutlet NSButton* zoomDisplay; | 137 @property(readonly, nonatomic) IBOutlet NSButton* zoomDisplay; |
| 138 @property(assign, nonatomic) IBOutlet NSButton* zoomMinus; | 138 @property(readonly, nonatomic) IBOutlet NSButton* zoomMinus; |
| 139 @property(assign, nonatomic) IBOutlet NSButton* zoomFullScreen; | 139 @property(readonly, nonatomic) IBOutlet NSButton* zoomFullScreen; |
| 140 @property(assign, nonatomic) | 140 @property(readonly, nonatomic) |
| 141 IBOutlet MenuTrackedRootView* toolbarActionsOverflowItem; | 141 IBOutlet MenuTrackedRootView* toolbarActionsOverflowItem; |
| 142 @property(assign, nonatomic) | 142 @property(readonly, nonatomic) |
| 143 IBOutlet BrowserActionsContainerView* overflowActionsContainerView; | 143 IBOutlet BrowserActionsContainerView* overflowActionsContainerView; |
| 144 | 144 |
| 145 - (id)initWithController:(WrenchMenuController*)controller; | 145 - (id)initWithController:(WrenchMenuController*)controller; |
| 146 - (IBAction)dispatchWrenchMenuCommand:(id)sender; | 146 - (IBAction)dispatchWrenchMenuCommand:(id)sender; |
| 147 | 147 |
| 148 @end | 148 @end |
| 149 | 149 |
| 150 #endif // CHROME_BROWSER_UI_COCOA_WRENCH_MENU_WRENCH_MENU_CONTROLLER_H_ | 150 #endif // CHROME_BROWSER_UI_COCOA_WRENCH_MENU_WRENCH_MENU_CONTROLLER_H_ |
| OLD | NEW |