| 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 "base/observer_list.h" | 8 #include "base/observer_list.h" |
| 9 #include "third_party/skia/include/core/SkColor.h" | 9 #include "third_party/skia/include/core/SkColor.h" |
| 10 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 // FocusableBorder | 237 // FocusableBorder |
| 238 kColorId_FocusedBorderColor, | 238 kColorId_FocusedBorderColor, |
| 239 kColorId_UnfocusedBorderColor, | 239 kColorId_UnfocusedBorderColor, |
| 240 // Button | 240 // Button |
| 241 kColorId_ButtonBackgroundColor, | 241 kColorId_ButtonBackgroundColor, |
| 242 kColorId_ButtonEnabledColor, | 242 kColorId_ButtonEnabledColor, |
| 243 kColorId_ButtonDisabledColor, | 243 kColorId_ButtonDisabledColor, |
| 244 kColorId_ButtonHighlightColor, | 244 kColorId_ButtonHighlightColor, |
| 245 kColorId_ButtonHoverColor, | 245 kColorId_ButtonHoverColor, |
| 246 kColorId_ButtonHoverBackgroundColor, | 246 kColorId_ButtonHoverBackgroundColor, |
| 247 kColorId_BlueButtonEnabledColor, |
| 248 kColorId_BlueButtonDisabledColor, |
| 249 kColorId_BlueButtonHighlightColor, |
| 250 kColorId_BlueButtonHoverColor, |
| 247 // MenuItem | 251 // MenuItem |
| 248 kColorId_EnabledMenuItemForegroundColor, | 252 kColorId_EnabledMenuItemForegroundColor, |
| 249 kColorId_DisabledMenuItemForegroundColor, | 253 kColorId_DisabledMenuItemForegroundColor, |
| 250 kColorId_DisabledEmphasizedMenuItemForegroundColor, | 254 kColorId_DisabledEmphasizedMenuItemForegroundColor, |
| 251 kColorId_SelectedMenuItemForegroundColor, | 255 kColorId_SelectedMenuItemForegroundColor, |
| 252 kColorId_FocusedMenuItemBackgroundColor, | 256 kColorId_FocusedMenuItemBackgroundColor, |
| 253 kColorId_HoverMenuItemBackgroundColor, | 257 kColorId_HoverMenuItemBackgroundColor, |
| 254 kColorId_MenuSeparatorColor, | 258 kColorId_MenuSeparatorColor, |
| 255 kColorId_MenuBackgroundColor, | 259 kColorId_MenuBackgroundColor, |
| 256 kColorId_MenuBorderColor, | 260 kColorId_MenuBorderColor, |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 private: | 339 private: |
| 336 // Observers to notify when the native theme changes. | 340 // Observers to notify when the native theme changes. |
| 337 ObserverList<NativeThemeObserver> native_theme_observers_; | 341 ObserverList<NativeThemeObserver> native_theme_observers_; |
| 338 | 342 |
| 339 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 343 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
| 340 }; | 344 }; |
| 341 | 345 |
| 342 } // namespace ui | 346 } // namespace ui |
| 343 | 347 |
| 344 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 348 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
| OLD | NEW |