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_COCOA_TAB_STRIP_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ |
6 #define CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ | 6 #define CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 | 9 |
10 class CommandUpdater; | 10 class CommandUpdater; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 // Updates the toolbar (and transitively the location bar) with the states of | 50 // Updates the toolbar (and transitively the location bar) with the states of |
51 // the specified |tab|. If |shouldRestore| is true, we're switching | 51 // the specified |tab|. If |shouldRestore| is true, we're switching |
52 // (back?) to this tab and should restore any previous location bar state | 52 // (back?) to this tab and should restore any previous location bar state |
53 // (such as user editing) as well. | 53 // (such as user editing) as well. |
54 - (void)updateToolbarWithContents:(TabContents*)tab | 54 - (void)updateToolbarWithContents:(TabContents*)tab |
55 shouldRestoreState:(BOOL)shouldRestore; | 55 shouldRestoreState:(BOOL)shouldRestore; |
56 | 56 |
57 // Sets whether or not the current page in the frontmost tab is bookmarked. | 57 // Sets whether or not the current page in the frontmost tab is bookmarked. |
58 - (void)setStarredState:(BOOL)isStarred; | 58 - (void)setStarredState:(BOOL)isStarred; |
59 | 59 |
| 60 // Return the rect, in WebKit coordinates (flipped), of the window's grow box |
| 61 // in the coordinate system of the content area of the currently selected tab. |
| 62 // |windowGrowBox| needs to be in the window's coordinate system. |
| 63 - (NSRect)selectedTabGrowBoxFromWindowGrowBox:(NSRect)windowGrowBox; |
| 64 |
60 @end | 65 @end |
61 | 66 |
62 #endif // CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ | 67 #endif // CHROME_BROWSER_COCOA_TAB_STRIP_CONTROLLER_H_ |
OLD | NEW |