OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_BROWSER_WINDOW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_BROWSER_WINDOW_CONTROLLER_H_ |
6 #define CHROME_BROWSER_BROWSER_WINDOW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_BROWSER_WINDOW_CONTROLLER_H_ |
7 | 7 |
8 // A class acting as the Objective-C controller for the Browser object. Handles | 8 // A class acting as the Objective-C controller for the Browser object. Handles |
9 // interactions between Cocoa and the cross-platform code. | 9 // interactions between Cocoa and the cross-platform code. |
10 | 10 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 // Updates the toolbar (and transitively the location bar) with the states of | 48 // Updates the toolbar (and transitively the location bar) with the states of |
49 // the specified |tab|. If |shouldRestore| is true, we're switching | 49 // the specified |tab|. If |shouldRestore| is true, we're switching |
50 // (back?) to this tab and should restore any previous location bar state | 50 // (back?) to this tab and should restore any previous location bar state |
51 // (such as user editing) as well. | 51 // (such as user editing) as well. |
52 - (void)updateToolbarWithContents:(TabContents*)tab | 52 - (void)updateToolbarWithContents:(TabContents*)tab |
53 shouldRestoreState:(BOOL)shouldRestore; | 53 shouldRestoreState:(BOOL)shouldRestore; |
54 | 54 |
55 // Sets whether or not the current page in the frontmost tab is bookmarked. | 55 // Sets whether or not the current page in the frontmost tab is bookmarked. |
56 - (void)setStarredState:(BOOL)isStarred; | 56 - (void)setStarredState:(BOOL)isStarred; |
57 | 57 |
| 58 // Return the rect, in WebKit coordinates (flipped), of the window's grow box |
| 59 // in the coordinate system of the content area of the currently selected tab. |
| 60 // |windowGrowBox| needs to be in the window's coordinate system. |
| 61 - (NSRect)selectedTabGrowBoxFromWindowGrowBox:(NSRect)windowGrowBox; |
| 62 |
58 @end | 63 @end |
59 | 64 |
60 #endif // CHROME_BROWSER_BROWSER_WINDOW_CONTROLLER_H_ | 65 #endif // CHROME_BROWSER_BROWSER_WINDOW_CONTROLLER_H_ |
OLD | NEW |