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

Side by Side Diff: chrome/browser/browser_window_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_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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698