| 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 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 | 643 |
| 644 // Returns the flag |blockLayoutSubviews_|. | 644 // Returns the flag |blockLayoutSubviews_|. |
| 645 - (BOOL)isLayoutSubviewsBlocked; | 645 - (BOOL)isLayoutSubviewsBlocked; |
| 646 | 646 |
| 647 // Returns the active tab contents controller's |blockFullscreenResize_| flag. | 647 // Returns the active tab contents controller's |blockFullscreenResize_| flag. |
| 648 - (BOOL)isActiveTabContentsControllerResizeBlocked; | 648 - (BOOL)isActiveTabContentsControllerResizeBlocked; |
| 649 | 649 |
| 650 // Returns the presentation mode controller. | 650 // Returns the presentation mode controller. |
| 651 - (PresentationModeController*)presentationModeController; | 651 - (PresentationModeController*)presentationModeController; |
| 652 | 652 |
| 653 // Sets the presentation mode controller. |
| 654 - (void)setPresentationModeController:(PresentationModeController*)controller; |
| 655 |
| 653 @end // @interface BrowserWindowController (TestingAPI) | 656 @end // @interface BrowserWindowController (TestingAPI) |
| 654 | 657 |
| 655 | 658 |
| 656 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_H_ | 659 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_CONTROLLER_H_ |
| OLD | NEW |