| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 | 223 |
| 224 // Colors for GetSystemColor(). | 224 // Colors for GetSystemColor(). |
| 225 enum ColorId { | 225 enum ColorId { |
| 226 // Windows | 226 // Windows |
| 227 kColorId_WindowBackground, | 227 kColorId_WindowBackground, |
| 228 // Dialogs | 228 // Dialogs |
| 229 kColorId_DialogBackground, | 229 kColorId_DialogBackground, |
| 230 // FocusableBorder | 230 // FocusableBorder |
| 231 kColorId_FocusedBorderColor, | 231 kColorId_FocusedBorderColor, |
| 232 kColorId_UnfocusedBorderColor, | 232 kColorId_UnfocusedBorderColor, |
| 233 kColorId_HoverBorderColor, |
| 233 // TextButton | 234 // TextButton |
| 234 kColorId_TextButtonBackgroundColor, | 235 kColorId_TextButtonBackgroundColor, |
| 235 kColorId_TextButtonEnabledColor, | 236 kColorId_TextButtonEnabledColor, |
| 236 kColorId_TextButtonDisabledColor, | 237 kColorId_TextButtonDisabledColor, |
| 237 kColorId_TextButtonHighlightColor, | 238 kColorId_TextButtonHighlightColor, |
| 238 kColorId_TextButtonHoverColor, | 239 kColorId_TextButtonHoverColor, |
| 239 // MenuItem | 240 // MenuItem |
| 240 kColorId_EnabledMenuItemForegroundColor, | 241 kColorId_EnabledMenuItemForegroundColor, |
| 241 kColorId_DisabledMenuItemForegroundColor, | 242 kColorId_DisabledMenuItemForegroundColor, |
| 242 kColorId_FocusedMenuItemBackgroundColor, | 243 kColorId_FocusedMenuItemBackgroundColor, |
| 244 kColorId_HoverMenuItemBackgroundColor, |
| 243 kColorId_MenuSeparatorColor, | 245 kColorId_MenuSeparatorColor, |
| 244 kColorId_MenuBackgroundColor, | 246 kColorId_MenuBackgroundColor, |
| 245 kColorId_MenuBorderColor, | 247 kColorId_MenuBorderColor, |
| 246 // Label | 248 // Label |
| 247 kColorId_LabelEnabledColor, | 249 kColorId_LabelEnabledColor, |
| 248 kColorId_LabelDisabledColor, | 250 kColorId_LabelDisabledColor, |
| 249 kColorId_LabelBackgroundColor, | 251 kColorId_LabelBackgroundColor, |
| 250 // Textfield | 252 // Textfield |
| 251 kColorId_TextfieldDefaultColor, | 253 kColorId_TextfieldDefaultColor, |
| 252 kColorId_TextfieldDefaultBackground, | 254 kColorId_TextfieldDefaultBackground, |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 unsigned int thumb_inactive_color_; | 295 unsigned int thumb_inactive_color_; |
| 294 unsigned int thumb_active_color_; | 296 unsigned int thumb_active_color_; |
| 295 unsigned int track_color_; | 297 unsigned int track_color_; |
| 296 | 298 |
| 297 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 299 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
| 298 }; | 300 }; |
| 299 | 301 |
| 300 } // namespace ui | 302 } // namespace ui |
| 301 | 303 |
| 302 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 304 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
| OLD | NEW |