| 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 #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 Loading... |
| 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 |
| OLD | NEW |