| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 kColorId_HoverMenuButtonBorderColor, | 286 kColorId_HoverMenuButtonBorderColor, |
| 287 // Label | 287 // Label |
| 288 kColorId_LabelEnabledColor, | 288 kColorId_LabelEnabledColor, |
| 289 kColorId_LabelDisabledColor, | 289 kColorId_LabelDisabledColor, |
| 290 kColorId_LabelTextSelectionColor, | 290 kColorId_LabelTextSelectionColor, |
| 291 kColorId_LabelTextSelectionBackgroundFocused, | 291 kColorId_LabelTextSelectionBackgroundFocused, |
| 292 // Link | 292 // Link |
| 293 kColorId_LinkDisabled, | 293 kColorId_LinkDisabled, |
| 294 kColorId_LinkEnabled, | 294 kColorId_LinkEnabled, |
| 295 kColorId_LinkPressed, | 295 kColorId_LinkPressed, |
| 296 // Separator |
| 297 kColorId_SeparatorColor, |
| 296 // Textfield | 298 // Textfield |
| 297 kColorId_TextfieldDefaultColor, | 299 kColorId_TextfieldDefaultColor, |
| 298 kColorId_TextfieldDefaultBackground, | 300 kColorId_TextfieldDefaultBackground, |
| 299 kColorId_TextfieldReadOnlyColor, | 301 kColorId_TextfieldReadOnlyColor, |
| 300 kColorId_TextfieldReadOnlyBackground, | 302 kColorId_TextfieldReadOnlyBackground, |
| 301 kColorId_TextfieldSelectionColor, | 303 kColorId_TextfieldSelectionColor, |
| 302 kColorId_TextfieldSelectionBackgroundFocused, | 304 kColorId_TextfieldSelectionBackgroundFocused, |
| 303 // Tooltip | 305 // Tooltip |
| 304 kColorId_TooltipBackground, | 306 kColorId_TooltipBackground, |
| 305 kColorId_TooltipText, | 307 kColorId_TooltipText, |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 private: | 393 private: |
| 392 // Observers to notify when the native theme changes. | 394 // Observers to notify when the native theme changes. |
| 393 base::ObserverList<NativeThemeObserver> native_theme_observers_; | 395 base::ObserverList<NativeThemeObserver> native_theme_observers_; |
| 394 | 396 |
| 395 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 397 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
| 396 }; | 398 }; |
| 397 | 399 |
| 398 } // namespace ui | 400 } // namespace ui |
| 399 | 401 |
| 400 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 402 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
| OLD | NEW |