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

Side by Side Diff: chrome/browser/ui/cocoa/tabs/tab_view.h

Issue 1883033002: [Mac] Update tab audio icon to Material Design and tweak close box color. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef CHROME_BROWSER_UI_COCOA_TABS_TAB_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_TABS_TAB_VIEW_H_
6 #define CHROME_BROWSER_UI_COCOA_TABS_TAB_VIEW_H_ 6 #define CHROME_BROWSER_UI_COCOA_TABS_TAB_VIEW_H_
7 7
8 #include <ApplicationServices/ApplicationServices.h> 8 #include <ApplicationServices/ApplicationServices.h>
9 #import <Cocoa/Cocoa.h> 9 #import <Cocoa/Cocoa.h>
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 - (void)startAlert; 114 - (void)startAlert;
115 115
116 // Stop showing the "alert" glow; this won't immediately wipe out any glow, but 116 // Stop showing the "alert" glow; this won't immediately wipe out any glow, but
117 // will make it fade away. 117 // will make it fade away.
118 - (void)cancelAlert; 118 - (void)cancelAlert;
119 119
120 // Returns the width of the largest part of the tab that is available for the 120 // Returns the width of the largest part of the tab that is available for the
121 // user to click to select/activate the tab. 121 // user to click to select/activate the tab.
122 - (int)widthOfLargestSelectableRegion; 122 - (int)widthOfLargestSelectableRegion;
123 123
124 // Returns the Material Design color of the "x".
125 - (SkColor)closeButtonColor;
126
124 @end 127 @end
125 128
126 // The TabController |controller_| is not the only owner of this view. If the 129 // The TabController |controller_| is not the only owner of this view. If the
127 // controller is released before this view, then we could be hanging onto a 130 // controller is released before this view, then we could be hanging onto a
128 // garbage pointer. To prevent this, the TabController uses this interface to 131 // garbage pointer. To prevent this, the TabController uses this interface to
129 // clear the |controller_| pointer when it is dying. 132 // clear the |controller_| pointer when it is dying.
130 @interface TabView (TabControllerInterface) 133 @interface TabView (TabControllerInterface)
131 - (void)setController:(TabController*)controller; 134 - (void)setController:(TabController*)controller;
132 @end 135 @end
133 136
134 #endif // CHROME_BROWSER_UI_COCOA_TABS_TAB_VIEW_H_ 137 #endif // CHROME_BROWSER_UI_COCOA_TABS_TAB_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698