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

Side by Side Diff: chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm

Issue 2074933006: Mac: Disable visual effects when fullscreen (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: 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 (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 #import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h" 5 #import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h"
6 6
7 #import <QuartzCore/QuartzCore.h> 7 #import <QuartzCore/QuartzCore.h>
8 8
9 #include <cmath> 9 #include <cmath>
10 #include <limits> 10 #include <limits>
(...skipping 2293 matching lines...) Expand 10 before | Expand all | Expand 10 after
2304 } 2304 }
2305 2305
2306 - (TabAlertState)alertStateForContents:(content::WebContents*)contents { 2306 - (TabAlertState)alertStateForContents:(content::WebContents*)contents {
2307 return chrome::GetTabAlertStateForContents(contents); 2307 return chrome::GetTabAlertStateForContents(contents);
2308 } 2308 }
2309 2309
2310 - (void)themeDidChangeNotification:(NSNotification*)notification { 2310 - (void)themeDidChangeNotification:(NSNotification*)notification {
2311 [newTabButton_ setImages]; 2311 [newTabButton_ setImages];
2312 } 2312 }
2313 2313
2314 - (void)setVisualEffectsDisabledForFullscreen:(BOOL)fullscreen {
2315 [tabStripView_ setVisualEffectsDisabledForFullscreen:fullscreen];
2316 }
2317
2314 @end 2318 @end
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/tabs/tab_strip_controller.h ('k') | chrome/browser/ui/cocoa/tabs/tab_strip_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698