| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_UI_COCOA_BROWSER_WINDOW_CONTROLLER_LAYOUT_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_LAYOUT_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_LAYOUT_H_ | 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_LAYOUT_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #import "chrome/browser/ui/cocoa/fullscreen_toolbar_controller.h" | 10 #import "chrome/browser/ui/cocoa/fullscreen/fullscreen_toolbar_controller.h" |
| 11 | 11 |
| 12 namespace chrome { | 12 namespace chrome { |
| 13 | 13 |
| 14 // The height of the tab strip. | 14 // The height of the tab strip. |
| 15 extern const CGFloat kTabStripHeight; | 15 extern const CGFloat kTabStripHeight; |
| 16 | 16 |
| 17 // Returns true if windows should use NSFullSizeContentViewWindowMask style | 17 // Returns true if windows should use NSFullSizeContentViewWindowMask style |
| 18 // mask. | 18 // mask. |
| 19 bool ShouldUseFullSizeContentView(); | 19 bool ShouldUseFullSizeContentView(); |
| 20 | 20 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 177 |
| 178 - (void)setHasDownloadShelf:(BOOL)hasDownloadShelf; | 178 - (void)setHasDownloadShelf:(BOOL)hasDownloadShelf; |
| 179 - (void)setDownloadShelfHeight:(CGFloat)downloadShelfHeight; | 179 - (void)setDownloadShelfHeight:(CGFloat)downloadShelfHeight; |
| 180 @end | 180 @end |
| 181 | 181 |
| 182 @interface BrowserWindowLayout (ExposedForTesting) | 182 @interface BrowserWindowLayout (ExposedForTesting) |
| 183 - (void)setOSYosemiteOrLater:(BOOL)osYosemiteOrLater; | 183 - (void)setOSYosemiteOrLater:(BOOL)osYosemiteOrLater; |
| 184 @end | 184 @end |
| 185 | 185 |
| 186 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_LAYOUT_H_ | 186 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_LAYOUT_H_ |
| OLD | NEW |