| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 private: | 389 private: |
| 388 // Observers to notify when the native theme changes. | 390 // Observers to notify when the native theme changes. |
| 389 base::ObserverList<NativeThemeObserver> native_theme_observers_; | 391 base::ObserverList<NativeThemeObserver> native_theme_observers_; |
| 390 | 392 |
| 391 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 393 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
| 392 }; | 394 }; |
| 393 | 395 |
| 394 } // namespace ui | 396 } // namespace ui |
| 395 | 397 |
| 396 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 398 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
| OLD | NEW |