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

Unified Diff: chrome/browser/ui/cocoa/tabs/tab_view.h

Issue 2126043002: [Material][Mac] Fix Default Favicon's Color (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for rsesek 2 Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm ('k') | chrome/browser/ui/cocoa/tabs/tab_view.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..ad16403fd77a4ecfbbe76b780f7c12bb6ac2e3d3 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.
+- (SkColor)iconColor;
// Updates the label font after changes to either state or the system "Increase
// Contrast" setting.
« no previous file with comments | « chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm ('k') | chrome/browser/ui/cocoa/tabs/tab_view.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698