Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: chrome/browser/cocoa/tab_strip_controller.h

Issue 21512: Hook up the resize rect for Mac and enable its use in the renderer (mac-only)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698