| 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/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 kColorId_BlueButtonPressedColor, | 269 kColorId_BlueButtonPressedColor, |
| 270 kColorId_BlueButtonHoverColor, | 270 kColorId_BlueButtonHoverColor, |
| 271 kColorId_BlueButtonShadowColor, | 271 kColorId_BlueButtonShadowColor, |
| 272 kColorId_ProminentButtonColor, | 272 kColorId_ProminentButtonColor, |
| 273 kColorId_TextOnProminentButtonColor, | 273 kColorId_TextOnProminentButtonColor, |
| 274 // MenuItem | 274 // MenuItem |
| 275 kColorId_EnabledMenuItemForegroundColor, | 275 kColorId_EnabledMenuItemForegroundColor, |
| 276 kColorId_DisabledMenuItemForegroundColor, | 276 kColorId_DisabledMenuItemForegroundColor, |
| 277 kColorId_SelectedMenuItemForegroundColor, | 277 kColorId_SelectedMenuItemForegroundColor, |
| 278 kColorId_FocusedMenuItemBackgroundColor, | 278 kColorId_FocusedMenuItemBackgroundColor, |
| 279 kColorId_MenuItemSubtitleColor, |
| 279 kColorId_MenuSeparatorColor, | 280 kColorId_MenuSeparatorColor, |
| 280 kColorId_MenuBackgroundColor, | 281 kColorId_MenuBackgroundColor, |
| 281 kColorId_MenuBorderColor, | 282 kColorId_MenuBorderColor, |
| 282 // MenuButton - buttons in wrench menu | 283 // MenuButton - buttons in wrench menu |
| 283 kColorId_EnabledMenuButtonBorderColor, | 284 kColorId_EnabledMenuButtonBorderColor, |
| 284 kColorId_FocusedMenuButtonBorderColor, | 285 kColorId_FocusedMenuButtonBorderColor, |
| 285 kColorId_HoverMenuButtonBorderColor, | 286 kColorId_HoverMenuButtonBorderColor, |
| 286 // Label | 287 // Label |
| 287 kColorId_LabelEnabledColor, | 288 kColorId_LabelEnabledColor, |
| 288 kColorId_LabelDisabledColor, | 289 kColorId_LabelDisabledColor, |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 private: | 387 private: |
| 387 // Observers to notify when the native theme changes. | 388 // Observers to notify when the native theme changes. |
| 388 base::ObserverList<NativeThemeObserver> native_theme_observers_; | 389 base::ObserverList<NativeThemeObserver> native_theme_observers_; |
| 389 | 390 |
| 390 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 391 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
| 391 }; | 392 }; |
| 392 | 393 |
| 393 } // namespace ui | 394 } // namespace ui |
| 394 | 395 |
| 395 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 396 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
| OLD | NEW |