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

Side by Side Diff: chrome/browser/cocoa/tab_contents_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_COTNENTS_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_
6 #define CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_ 6 #define CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_
7 7
8 #include <Cocoa/Cocoa.h> 8 #include <Cocoa/Cocoa.h>
9 9
10 class CommandUpdater; 10 class CommandUpdater;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 // notification from the model isn't specific). 61 // notification from the model isn't specific).
62 - (void)tabDidChange; 62 - (void)tabDidChange;
63 63
64 // Called when any url bar state changes. If |tabForRestoring| is non-NULL, 64 // Called when any url bar state changes. If |tabForRestoring| is non-NULL,
65 // it points to a TabContents whose state we should restore. 65 // it points to a TabContents whose state we should restore.
66 - (void)updateToolbarWithContents:(TabContents*)tabForRestoring; 66 - (void)updateToolbarWithContents:(TabContents*)tabForRestoring;
67 67
68 // Sets whether or not the current page in the frontmost tab is bookmarked. 68 // Sets whether or not the current page in the frontmost tab is bookmarked.
69 - (void)setStarredState:(BOOL)isStarred; 69 - (void)setStarredState:(BOOL)isStarred;
70 70
71 // Return the rect, in WebKit coordinates (flipped), of the window's grow box
72 // in the coordinate system of the content area of this tab.
73 // |windowGrowBox| needs to be in the window's coordinate system.
74 - (NSRect)growBoxFromWindowGrowBox:(NSRect)windowGrowBox;
75
71 @end 76 @end
72 77
73 #endif // CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_ 78 #endif // CHROME_BROWSER_COCOA_TAB_COTNENTS_CONTROLLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698