Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: chrome/browser/ui/cocoa/browser_window_controller.mm

Issue 2078733002: [Mac] Fix Toolbar glimpse during fullscreen transition (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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)
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/browser_window_controller.h ('k') | chrome/browser/ui/cocoa/presentation_mode_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698