| 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 2052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2063 } | 2063 } |
| 2064 | 2064 |
| 2065 - (BOOL)isTabbedWindow { | 2065 - (BOOL)isTabbedWindow { |
| 2066 return browser_->is_type_tabbed(); | 2066 return browser_->is_type_tabbed(); |
| 2067 } | 2067 } |
| 2068 | 2068 |
| 2069 - (NSRect)savedRegularWindowFrame { | 2069 - (NSRect)savedRegularWindowFrame { |
| 2070 return savedRegularWindowFrame_; | 2070 return savedRegularWindowFrame_; |
| 2071 } | 2071 } |
| 2072 | 2072 |
| 2073 - (BOOL)isFullscreenTransitionInProgress { |
| 2074 return enteringAppKitFullscreen_ || exitingAppKitFullscreen_; |
| 2075 } |
| 2076 |
| 2073 @end // @implementation BrowserWindowController(WindowType) | 2077 @end // @implementation BrowserWindowController(WindowType) |
| OLD | NEW |