| 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_TOOLBAR_TOOLBAR_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_TOOLBAR_TOOLBAR_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_TOOLBAR_TOOLBAR_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_TOOLBAR_TOOLBAR_CONTROLLER_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 // ignored. This changes the behavior of other methods, like |-view|. | 158 // ignored. This changes the behavior of other methods, like |-view|. |
| 159 - (void)setHasToolbar:(BOOL)toolbar hasLocationBar:(BOOL)locBar; | 159 - (void)setHasToolbar:(BOOL)toolbar hasLocationBar:(BOOL)locBar; |
| 160 | 160 |
| 161 // Point on the star icon for the bookmark bubble to be - in the | 161 // Point on the star icon for the bookmark bubble to be - in the |
| 162 // associated window's coordinate system. | 162 // associated window's coordinate system. |
| 163 - (NSPoint)bookmarkBubblePoint; | 163 - (NSPoint)bookmarkBubblePoint; |
| 164 | 164 |
| 165 // Point on the save credit card icon for the save credit card bubble. | 165 // Point on the save credit card icon for the save credit card bubble. |
| 166 - (NSPoint)saveCreditCardBubblePoint; | 166 - (NSPoint)saveCreditCardBubblePoint; |
| 167 | 167 |
| 168 // Point on the translate icon for the Translate bubble. | |
| 169 - (NSPoint)translateBubblePoint; | |
| 170 | |
| 171 // Returns the desired toolbar height for the given compression factor. | 168 // Returns the desired toolbar height for the given compression factor. |
| 172 - (CGFloat)desiredHeightForCompression:(CGFloat)compressByHeight; | 169 - (CGFloat)desiredHeightForCompression:(CGFloat)compressByHeight; |
| 173 | 170 |
| 174 // Set the opacity of the divider (the line at the bottom) *if* we have a | 171 // Set the opacity of the divider (the line at the bottom) *if* we have a |
| 175 // |ToolbarView| (0 means don't show it); no-op otherwise. | 172 // |ToolbarView| (0 means don't show it); no-op otherwise. |
| 176 - (void)setDividerOpacity:(CGFloat)opacity; | 173 - (void)setDividerOpacity:(CGFloat)opacity; |
| 177 | 174 |
| 178 // Create and add the Browser Action buttons to the toolbar view. | 175 // Create and add the Browser Action buttons to the toolbar view. |
| 179 - (void)createBrowserActionButtons; | 176 - (void)createBrowserActionButtons; |
| 180 | 177 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 199 @interface ToolbarController(PrivateTestMethods) | 196 @interface ToolbarController(PrivateTestMethods) |
| 200 // Returns an array of views in the order of the outlets above. | 197 // Returns an array of views in the order of the outlets above. |
| 201 - (NSArray*)toolbarViews; | 198 - (NSArray*)toolbarViews; |
| 202 - (void)showOptionalHomeButton; | 199 - (void)showOptionalHomeButton; |
| 203 - (void)installAppMenu; | 200 - (void)installAppMenu; |
| 204 // Return a hover button for the current event. | 201 // Return a hover button for the current event. |
| 205 - (NSButton*)hoverButtonForEvent:(NSEvent*)theEvent; | 202 - (NSButton*)hoverButtonForEvent:(NSEvent*)theEvent; |
| 206 @end | 203 @end |
| 207 | 204 |
| 208 #endif // CHROME_BROWSER_UI_COCOA_TOOLBAR_TOOLBAR_CONTROLLER_H_ | 205 #endif // CHROME_BROWSER_UI_COCOA_TOOLBAR_TOOLBAR_CONTROLLER_H_ |
| OLD | NEW |