OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef CHROME_BROWSER_THEMES_THEME_PROPERTIES_H_ | 5 #ifndef CHROME_BROWSER_THEMES_THEME_PROPERTIES_H_ |
6 #define CHROME_BROWSER_THEMES_THEME_PROPERTIES_H_ | 6 #define CHROME_BROWSER_THEMES_THEME_PROPERTIES_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
100 COLOR_TOOLBAR_TOP_SEPARATOR, | 100 COLOR_TOOLBAR_TOP_SEPARATOR, |
101 COLOR_TOOLBAR_TOP_SEPARATOR_INACTIVE, | 101 COLOR_TOOLBAR_TOP_SEPARATOR_INACTIVE, |
102 | 102 |
103 // Colors of vertical separators, such as on the bookmark bar or on the DL | 103 // Colors of vertical separators, such as on the bookmark bar or on the DL |
104 // shelf. | 104 // shelf. |
105 COLOR_TOOLBAR_VERTICAL_SEPARATOR, | 105 COLOR_TOOLBAR_VERTICAL_SEPARATOR, |
106 | 106 |
107 // The color of a background tab, as well as the new tab button. | 107 // The color of a background tab, as well as the new tab button. |
108 COLOR_BACKGROUND_TAB, | 108 COLOR_BACKGROUND_TAB, |
109 | 109 |
110 // The color of the "instructions text" in an empty bookmarks bar | |
Evan Stade
2016/06/17 20:23:37
nit: final punctuation
| |
111 COLOR_BOOKMARK_BAR_INSTRUCTIONS_TEXT, | |
112 | |
110 // Colors used for the detached (NTP) bookmark bar. | 113 // Colors used for the detached (NTP) bookmark bar. |
111 COLOR_DETACHED_BOOKMARK_BAR_BACKGROUND, | 114 COLOR_DETACHED_BOOKMARK_BAR_BACKGROUND, |
112 COLOR_DETACHED_BOOKMARK_BAR_SEPARATOR, | 115 COLOR_DETACHED_BOOKMARK_BAR_SEPARATOR, |
113 | 116 |
114 // The throbber colors for tabs or anything on a toolbar (currently, only | 117 // The throbber colors for tabs or anything on a toolbar (currently, only |
115 // the download shelf). If you're adding a throbber elsewhere, such as in | 118 // the download shelf). If you're adding a throbber elsewhere, such as in |
116 // a dialog or bubble, you likely want | 119 // a dialog or bubble, you likely want |
117 // NativeTheme::kColorId_ThrobberSpinningColor. | 120 // NativeTheme::kColorId_ThrobberSpinningColor. |
118 COLOR_TAB_THROBBER_SPINNING, | 121 COLOR_TAB_THROBBER_SPINNING, |
119 COLOR_TAB_THROBBER_WAITING, | 122 COLOR_TAB_THROBBER_WAITING, |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
180 | 183 |
181 // Returns the default color for the given color |id| COLOR_* enum value. | 184 // Returns the default color for the given color |id| COLOR_* enum value. |
182 // Returns gfx::kPlaceholderColor if |id| is invalid. | 185 // Returns gfx::kPlaceholderColor if |id| is invalid. |
183 static SkColor GetDefaultColor(int id, bool otr); | 186 static SkColor GetDefaultColor(int id, bool otr); |
184 | 187 |
185 private: | 188 private: |
186 DISALLOW_IMPLICIT_CONSTRUCTORS(ThemeProperties); | 189 DISALLOW_IMPLICIT_CONSTRUCTORS(ThemeProperties); |
187 }; | 190 }; |
188 | 191 |
189 #endif // CHROME_BROWSER_THEMES_THEME_PROPERTIES_H_ | 192 #endif // CHROME_BROWSER_THEMES_THEME_PROPERTIES_H_ |
OLD | NEW |