Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_H_ |
| 7 | 7 |
| 8 // A class acting as the Objective-C controller for the Browser | 8 // A class acting as the Objective-C controller for the Browser |
| 9 // object. Handles interactions between Cocoa and the cross-platform | 9 // object. Handles interactions between Cocoa and the cross-platform |
| 10 // code. Each window has a single toolbar and, by virtue of being a | 10 // code. Each window has a single toolbar and, by virtue of being a |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 491 - (NSSize)overflowFrom:(NSRect)source | 491 - (NSSize)overflowFrom:(NSRect)source |
| 492 to:(NSRect)target; | 492 to:(NSRect)target; |
| 493 | 493 |
| 494 // The fullscreen exit bubble controller, or nil if the bubble isn't showing. | 494 // The fullscreen exit bubble controller, or nil if the bubble isn't showing. |
| 495 - (FullscreenExitBubbleController*)fullscreenExitBubbleController; | 495 - (FullscreenExitBubbleController*)fullscreenExitBubbleController; |
| 496 | 496 |
| 497 // Gets the rect, in window base coordinates, that the omnibox popup should be | 497 // Gets the rect, in window base coordinates, that the omnibox popup should be |
| 498 // positioned relative to. | 498 // positioned relative to. |
| 499 - (NSRect)omniboxPopupAnchorRect; | 499 - (NSRect)omniboxPopupAnchorRect; |
| 500 | 500 |
| 501 - (void)layoutInfoBar; | |
|
Robert Sesek
2013/08/26 14:06:56
Document
Robert Sesek
2013/08/26 14:06:56
This lays out infoBars does't it?
sail
2013/08/26 18:32:23
Done.
| |
| 502 | |
| 501 @end // @interface BrowserWindowController (TestingAPI) | 503 @end // @interface BrowserWindowController (TestingAPI) |
| 502 | 504 |
| 503 | 505 |
| 504 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_H_ | 506 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_H_ |
| OLD | NEW |