| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_THEMES_THEME_SERVICE_H_ |
| 6 #define CHROME_BROWSER_THEMES_THEME_SERVICE_H_ | 6 #define CHROME_BROWSER_THEMES_THEME_SERVICE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 COLOR_NTP_LINK, | 90 COLOR_NTP_LINK, |
| 91 COLOR_NTP_LINK_UNDERLINE, | 91 COLOR_NTP_LINK_UNDERLINE, |
| 92 COLOR_NTP_HEADER, | 92 COLOR_NTP_HEADER, |
| 93 COLOR_NTP_SECTION, | 93 COLOR_NTP_SECTION, |
| 94 COLOR_NTP_SECTION_TEXT, | 94 COLOR_NTP_SECTION_TEXT, |
| 95 COLOR_NTP_SECTION_LINK, | 95 COLOR_NTP_SECTION_LINK, |
| 96 COLOR_NTP_SECTION_LINK_UNDERLINE, | 96 COLOR_NTP_SECTION_LINK_UNDERLINE, |
| 97 COLOR_CONTROL_BACKGROUND, | 97 COLOR_CONTROL_BACKGROUND, |
| 98 COLOR_BUTTON_BACKGROUND, | 98 COLOR_BUTTON_BACKGROUND, |
| 99 | 99 |
| 100 COLOR_SEARCH_NTP_BACKGROUND, |
| 101 COLOR_SEARCH_SEARCH_BACKGROUND, |
| 102 COLOR_SEARCH_DEFAULT_BACKGROUND, |
| 103 COLOR_SEARCH_SEPARATOR_LINE, |
| 104 |
| 100 // These colors don't have constant default values. They are derived from | 105 // These colors don't have constant default values. They are derived from |
| 101 // the runtime value of other colors. | 106 // the runtime value of other colors. |
| 102 COLOR_NTP_SECTION_HEADER_TEXT, | 107 COLOR_NTP_SECTION_HEADER_TEXT, |
| 103 COLOR_NTP_SECTION_HEADER_TEXT_HOVER, | 108 COLOR_NTP_SECTION_HEADER_TEXT_HOVER, |
| 104 COLOR_NTP_SECTION_HEADER_RULE, | 109 COLOR_NTP_SECTION_HEADER_RULE, |
| 105 COLOR_NTP_SECTION_HEADER_RULE_LIGHT, | 110 COLOR_NTP_SECTION_HEADER_RULE_LIGHT, |
| 106 COLOR_NTP_TEXT_LIGHT, | 111 COLOR_NTP_TEXT_LIGHT, |
| 107 | 112 |
| 108 TINT_BUTTONS, | 113 TINT_BUTTONS, |
| 109 TINT_FRAME, | 114 TINT_FRAME, |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 | 318 |
| 314 // The number of infobars currently displayed. | 319 // The number of infobars currently displayed. |
| 315 int number_of_infobars_; | 320 int number_of_infobars_; |
| 316 | 321 |
| 317 content::NotificationRegistrar registrar_; | 322 content::NotificationRegistrar registrar_; |
| 318 | 323 |
| 319 DISALLOW_COPY_AND_ASSIGN(ThemeService); | 324 DISALLOW_COPY_AND_ASSIGN(ThemeService); |
| 320 }; | 325 }; |
| 321 | 326 |
| 322 #endif // CHROME_BROWSER_THEMES_THEME_SERVICE_H_ | 327 #endif // CHROME_BROWSER_THEMES_THEME_SERVICE_H_ |
| OLD | NEW |