| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 COLOR_CONTROL_BACKGROUND = 1000, | 81 COLOR_CONTROL_BACKGROUND = 1000, |
| 82 COLOR_TOOLBAR_SEPARATOR, | 82 COLOR_TOOLBAR_SEPARATOR, |
| 83 | 83 |
| 84 // These colors don't have constant default values. They are derived from | 84 // These colors don't have constant default values. They are derived from |
| 85 // the runtime value of other colors. | 85 // the runtime value of other colors. |
| 86 COLOR_NTP_SECTION_HEADER_TEXT, | 86 COLOR_NTP_SECTION_HEADER_TEXT, |
| 87 COLOR_NTP_SECTION_HEADER_TEXT_HOVER, | 87 COLOR_NTP_SECTION_HEADER_TEXT_HOVER, |
| 88 COLOR_NTP_SECTION_HEADER_RULE, | 88 COLOR_NTP_SECTION_HEADER_RULE, |
| 89 COLOR_NTP_SECTION_HEADER_RULE_LIGHT, | 89 COLOR_NTP_SECTION_HEADER_RULE_LIGHT, |
| 90 COLOR_NTP_TEXT_LIGHT, | 90 COLOR_NTP_TEXT_LIGHT, |
| 91 // Color for any icon on the tabstrip (e.g. media indicator). | |
| 92 COLOR_TAB_ICON, | |
| 93 COLOR_THROBBER_SPINNING, | 91 COLOR_THROBBER_SPINNING, |
| 94 COLOR_THROBBER_WAITING, | 92 COLOR_THROBBER_WAITING, |
| 95 #if defined(ENABLE_SUPERVISED_USERS) | 93 #if defined(ENABLE_SUPERVISED_USERS) |
| 96 COLOR_SUPERVISED_USER_LABEL, | 94 COLOR_SUPERVISED_USER_LABEL, |
| 97 COLOR_SUPERVISED_USER_LABEL_BACKGROUND, | 95 COLOR_SUPERVISED_USER_LABEL_BACKGROUND, |
| 98 COLOR_SUPERVISED_USER_LABEL_BORDER, | 96 COLOR_SUPERVISED_USER_LABEL_BORDER, |
| 99 #endif | 97 #endif |
| 100 | 98 |
| 101 COLOR_STATUS_BAR_TEXT, | 99 COLOR_STATUS_BAR_TEXT, |
| 102 | 100 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 141 |
| 144 // Returns the default color for the given color |id| COLOR_* enum value. | 142 // Returns the default color for the given color |id| COLOR_* enum value. |
| 145 // Returns SK_ColorRED if |id| is invalid. | 143 // Returns SK_ColorRED if |id| is invalid. |
| 146 static SkColor GetDefaultColor(int id); | 144 static SkColor GetDefaultColor(int id); |
| 147 | 145 |
| 148 private: | 146 private: |
| 149 DISALLOW_IMPLICIT_CONSTRUCTORS(ThemeProperties); | 147 DISALLOW_IMPLICIT_CONSTRUCTORS(ThemeProperties); |
| 150 }; | 148 }; |
| 151 | 149 |
| 152 #endif // CHROME_BROWSER_THEMES_THEME_PROPERTIES_H_ | 150 #endif // CHROME_BROWSER_THEMES_THEME_PROPERTIES_H_ |
| OLD | NEW |