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

Side by Side Diff: chrome/browser/browser_window_controller.mm

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 #import "chrome/browser/browser.h" 5 #import "chrome/browser/browser.h"
6 #import "chrome/browser/browser_window_cocoa.h" 6 #import "chrome/browser/browser_window_cocoa.h"
7 #import "chrome/browser/browser_window_controller.h" 7 #import "chrome/browser/browser_window_controller.h"
8 #import "chrome/browser/cocoa/tab_strip_view.h" 8 #import "chrome/browser/cocoa/tab_strip_view.h"
9 #import "chrome/browser/cocoa/tab_strip_controller.h" 9 #import "chrome/browser/cocoa/tab_strip_controller.h"
10 10
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 - (void)updateToolbarWithContents:(TabContents*)tab 138 - (void)updateToolbarWithContents:(TabContents*)tab
139 shouldRestoreState:(BOOL)shouldRestore { 139 shouldRestoreState:(BOOL)shouldRestore {
140 [tabStripController_ updateToolbarWithContents:tab 140 [tabStripController_ updateToolbarWithContents:tab
141 shouldRestoreState:shouldRestore]; 141 shouldRestoreState:shouldRestore];
142 } 142 }
143 143
144 - (void)setStarredState:(BOOL)isStarred { 144 - (void)setStarredState:(BOOL)isStarred {
145 [tabStripController_ setStarredState:isStarred]; 145 [tabStripController_ setStarredState:isStarred];
146 } 146 }
147 147
148 // Return the rect, in WebKit coordinates (flipped), of the window's grow box
149 // in the coordinate system of the content area of the currently selected tab.
150 // |windowGrowBox| needs to be in the window's coordinate system.
151 - (NSRect)selectedTabGrowBoxFromWindowGrowBox:(NSRect)windowGrowBox {
152 return [tabStripController_
153 selectedTabGrowBoxFromWindowGrowBox:windowGrowBox];
154 }
155
148 @end 156 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698