| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 5 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
| 6 | 6 |
| 7 #include <cmath> | 7 #include <cmath> |
| 8 #include <numeric> | 8 #include <numeric> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 2044 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2055 } | 2055 } |
| 2056 | 2056 |
| 2057 - (BOOL)isTabbedWindow { | 2057 - (BOOL)isTabbedWindow { |
| 2058 return browser_->is_type_tabbed(); | 2058 return browser_->is_type_tabbed(); |
| 2059 } | 2059 } |
| 2060 | 2060 |
| 2061 - (NSRect)savedRegularWindowFrame { | 2061 - (NSRect)savedRegularWindowFrame { |
| 2062 return savedRegularWindowFrame_; | 2062 return savedRegularWindowFrame_; |
| 2063 } | 2063 } |
| 2064 | 2064 |
| 2065 - (BOOL)isFullscreenTransitionInProgress { |
| 2066 return enteringAppKitFullscreen_ || exitingAppKitFullscreen_; |
| 2067 } |
| 2068 |
| 2065 @end // @implementation BrowserWindowController(WindowType) | 2069 @end // @implementation BrowserWindowController(WindowType) |
| OLD | NEW |