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 UI_NATIVE_THEME_NATIVE_THEME_H_ | 5 #ifndef UI_NATIVE_THEME_NATIVE_THEME_H_ |
6 #define UI_NATIVE_THEME_NATIVE_THEME_H_ | 6 #define UI_NATIVE_THEME_NATIVE_THEME_H_ |
7 | 7 |
8 #include "third_party/skia/include/core/SkColor.h" | 8 #include "third_party/skia/include/core/SkColor.h" |
9 #include "ui/gfx/native_widget_types.h" | 9 #include "ui/gfx/native_widget_types.h" |
10 #include "ui/native_theme/native_theme_export.h" | 10 #include "ui/native_theme/native_theme_export.h" |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
233 // TextButton | 233 // TextButton |
234 kColorId_TextButtonBackgroundColor, | 234 kColorId_TextButtonBackgroundColor, |
235 kColorId_TextButtonEnabledColor, | 235 kColorId_TextButtonEnabledColor, |
236 kColorId_TextButtonDisabledColor, | 236 kColorId_TextButtonDisabledColor, |
237 kColorId_TextButtonHighlightColor, | 237 kColorId_TextButtonHighlightColor, |
238 kColorId_TextButtonHoverColor, | 238 kColorId_TextButtonHoverColor, |
239 // MenuItem | 239 // MenuItem |
240 kColorId_EnabledMenuItemForegroundColor, | 240 kColorId_EnabledMenuItemForegroundColor, |
241 kColorId_DisabledMenuItemForegroundColor, | 241 kColorId_DisabledMenuItemForegroundColor, |
242 kColorId_FocusedMenuItemBackgroundColor, | 242 kColorId_FocusedMenuItemBackgroundColor, |
243 kColorId_HotMenuItemBackgroundColor, | |
Elliot Glaysher
2013/03/18 17:53:40
Please follow the naming conventions from the Stat
Bobby Powers
2013/03/18 18:11:43
Understood, will do.
Bobby Powers
2013/03/18 19:59:53
Done.
| |
243 kColorId_MenuSeparatorColor, | 244 kColorId_MenuSeparatorColor, |
244 kColorId_MenuBackgroundColor, | 245 kColorId_MenuBackgroundColor, |
245 kColorId_MenuBorderColor, | 246 kColorId_MenuBorderColor, |
246 // Label | 247 // Label |
247 kColorId_LabelEnabledColor, | 248 kColorId_LabelEnabledColor, |
248 kColorId_LabelDisabledColor, | 249 kColorId_LabelDisabledColor, |
249 kColorId_LabelBackgroundColor, | 250 kColorId_LabelBackgroundColor, |
250 // Textfield | 251 // Textfield |
251 kColorId_TextfieldDefaultColor, | 252 kColorId_TextfieldDefaultColor, |
252 kColorId_TextfieldDefaultBackground, | 253 kColorId_TextfieldDefaultBackground, |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
293 unsigned int thumb_inactive_color_; | 294 unsigned int thumb_inactive_color_; |
294 unsigned int thumb_active_color_; | 295 unsigned int thumb_active_color_; |
295 unsigned int track_color_; | 296 unsigned int track_color_; |
296 | 297 |
297 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 298 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
298 }; | 299 }; |
299 | 300 |
300 } // namespace ui | 301 } // namespace ui |
301 | 302 |
302 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 303 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
OLD | NEW |