| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 COLOR_TOOLBAR_INACTIVE, | 139 COLOR_TOOLBAR_INACTIVE, |
| 140 COLOR_BACKGROUND_TAB_INACTIVE, | 140 COLOR_BACKGROUND_TAB_INACTIVE, |
| 141 COLOR_TOOLBAR_BEZEL, | 141 COLOR_TOOLBAR_BEZEL, |
| 142 COLOR_TOOLBAR_STROKE, | 142 COLOR_TOOLBAR_STROKE, |
| 143 COLOR_TOOLBAR_STROKE_INACTIVE, | 143 COLOR_TOOLBAR_STROKE_INACTIVE, |
| 144 COLOR_TOOLBAR_STROKE_THEME, | 144 COLOR_TOOLBAR_STROKE_THEME, |
| 145 COLOR_TOOLBAR_STROKE_THEME_INACTIVE, | 145 COLOR_TOOLBAR_STROKE_THEME_INACTIVE, |
| 146 // The color of a toolbar button's border. | 146 // The color of a toolbar button's border. |
| 147 COLOR_TOOLBAR_BUTTON_STROKE, | 147 COLOR_TOOLBAR_BUTTON_STROKE, |
| 148 COLOR_TOOLBAR_BUTTON_STROKE_INACTIVE, | 148 COLOR_TOOLBAR_BUTTON_STROKE_INACTIVE, |
| 149 GRADIENT_FRAME_INCOGNITO, | |
| 150 GRADIENT_FRAME_INCOGNITO_INACTIVE, | |
| 151 GRADIENT_TOOLBAR, | 149 GRADIENT_TOOLBAR, |
| 152 GRADIENT_TOOLBAR_INACTIVE, | 150 GRADIENT_TOOLBAR_INACTIVE, |
| 153 GRADIENT_TOOLBAR_BUTTON, | 151 GRADIENT_TOOLBAR_BUTTON, |
| 154 GRADIENT_TOOLBAR_BUTTON_INACTIVE, | 152 GRADIENT_TOOLBAR_BUTTON_INACTIVE, |
| 155 GRADIENT_TOOLBAR_BUTTON_PRESSED, | 153 GRADIENT_TOOLBAR_BUTTON_PRESSED, |
| 156 GRADIENT_TOOLBAR_BUTTON_PRESSED_INACTIVE, | 154 GRADIENT_TOOLBAR_BUTTON_PRESSED_INACTIVE, |
| 157 #endif // OS_MACOSX | 155 #endif // OS_MACOSX |
| 158 }; | 156 }; |
| 159 | 157 |
| 160 // Used by the browser theme pack to parse alignments from something like | 158 // Used by the browser theme pack to parse alignments from something like |
| (...skipping 18 matching lines...) Expand all Loading... |
| 179 | 177 |
| 180 // Returns the default color for the given color |id| COLOR_* enum value. | 178 // Returns the default color for the given color |id| COLOR_* enum value. |
| 181 // Returns gfx::kPlaceholderColor if |id| is invalid. | 179 // Returns gfx::kPlaceholderColor if |id| is invalid. |
| 182 static SkColor GetDefaultColor(int id, bool otr); | 180 static SkColor GetDefaultColor(int id, bool otr); |
| 183 | 181 |
| 184 private: | 182 private: |
| 185 DISALLOW_IMPLICIT_CONSTRUCTORS(ThemeProperties); | 183 DISALLOW_IMPLICIT_CONSTRUCTORS(ThemeProperties); |
| 186 }; | 184 }; |
| 187 | 185 |
| 188 #endif // CHROME_BROWSER_THEMES_THEME_PROPERTIES_H_ | 186 #endif // CHROME_BROWSER_THEMES_THEME_PROPERTIES_H_ |
| OLD | NEW |