Index: chrome/browser/ui/cocoa/tabs/tab_view.h |
diff --git a/chrome/browser/ui/cocoa/tabs/tab_view.h b/chrome/browser/ui/cocoa/tabs/tab_view.h |
index 518b0246baff0848b1462d8e536501d20e8939bd..350d6f143757a98ca8ac23946510ff98f2d1db67 100644 |
--- a/chrome/browser/ui/cocoa/tabs/tab_view.h |
+++ b/chrome/browser/ui/cocoa/tabs/tab_view.h |
@@ -35,6 +35,9 @@ enum AlertState { |
// slightly lighter color. We do this by just reducing the alpha. |
const CGFloat kImageNoFocusAlpha = 0.65; |
+// The default COLOR_TAB_TEXT color. |
+const SkColor kDefaultTabTextColor = SkColorSetARGB(0xA0, 0x00, 0x00, 0x00); |
+ |
} // namespace tabs |
@class TabController, TabWindowController, GTMFadeTruncatingTextFieldCell; |
@@ -121,8 +124,9 @@ const CGFloat kImageNoFocusAlpha = 0.65; |
// user to click to select/activate the tab. |
- (int)widthOfLargestSelectableRegion; |
-// Returns the Material Design color of the "x". |
-- (SkColor)closeButtonColor; |
+// Returns the Material Design color of the icons. Used by the alert indicator, |
+// the "x" and the default favicon. |
Robert Sesek
2016/07/12 23:43:56
What are your thoughts on the serial comma? (I lik
spqchan
2016/07/13 17:16:14
I am confused if that's a smiley, or if you want m
Robert Sesek
2016/07/13 22:37:59
It's a smiley. I would recommend the serial comma
|
+- (SkColor)iconColor; |
// Updates the label font after changes to either state or the system "Increase |
// Contrast" setting. |