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

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

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/alert_indicator_button_cocoa.h" 5 #import "chrome/browser/ui/cocoa/tabs/alert_indicator_button_cocoa.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/mac/foundation_util.h" 8 #include "base/mac/foundation_util.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/thread_task_runner_handle.h" 10 #include "base/threading/thread_task_runner_handle.h"
11 #import "chrome/browser/ui/cocoa/tabs/tab_view.h" 11 #import "chrome/browser/ui/cocoa/tabs/tab_view.h"
12 #include "content/public/browser/user_metrics.h" 12 #include "content/public/browser/user_metrics.h"
13 #include "ui/gfx/animation/animation.h" 13 #include "ui/gfx/animation/animation.h"
14 #include "ui/gfx/animation/animation_delegate.h" 14 #include "ui/gfx/animation/animation_delegate.h"
15 #include "ui/gfx/image/image.h" 15 #include "ui/gfx/image/image.h"
16 16
17 namespace { 17 namespace {
18 18
19 // The minimum required click-to-select area of an inactive tab before allowing 19 // The minimum required click-to-select area of an inactive tab before allowing
20 // the click-to-mute functionality to be enabled. This value is in terms of 20 // the click-to-mute functionality to be enabled. This value is in terms of
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 - (void)windowDidChangeTheme { 247 - (void)windowDidChangeTheme {
248 // Force the alert icon to update because the icon color may change based 248 // Force the alert icon to update because the icon color may change based
249 // on the current theme. 249 // on the current theme.
250 [self updateIconForState:alertState_]; 250 [self updateIconForState:alertState_];
251 } 251 }
252 252
253 - (void)windowDidChangeActive { 253 - (void)windowDidChangeActive {
254 } 254 }
255 255
256 @end 256 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698