| 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 // Tooltip | 328 // Tooltip |
| 329 kColorId_TooltipBackground, | 329 kColorId_TooltipBackground, |
| 330 kColorId_TooltipText, | 330 kColorId_TooltipText, |
| 331 // Tree | 331 // Tree |
| 332 kColorId_TreeBackground, | 332 kColorId_TreeBackground, |
| 333 kColorId_TreeText, | 333 kColorId_TreeText, |
| 334 kColorId_TreeSelectedText, | 334 kColorId_TreeSelectedText, |
| 335 kColorId_TreeSelectedTextUnfocused, | 335 kColorId_TreeSelectedTextUnfocused, |
| 336 kColorId_TreeSelectionBackgroundFocused, | 336 kColorId_TreeSelectionBackgroundFocused, |
| 337 kColorId_TreeSelectionBackgroundUnfocused, | 337 kColorId_TreeSelectionBackgroundUnfocused, |
| 338 kColorId_TreeArrow, | |
| 339 // Table | 338 // Table |
| 340 kColorId_TableBackground, | 339 kColorId_TableBackground, |
| 341 kColorId_TableText, | 340 kColorId_TableText, |
| 342 kColorId_TableSelectedText, | 341 kColorId_TableSelectedText, |
| 343 kColorId_TableSelectedTextUnfocused, | 342 kColorId_TableSelectedTextUnfocused, |
| 344 kColorId_TableSelectionBackgroundFocused, | 343 kColorId_TableSelectionBackgroundFocused, |
| 345 kColorId_TableSelectionBackgroundUnfocused, | 344 kColorId_TableSelectionBackgroundUnfocused, |
| 346 kColorId_TableGroupingIndicatorColor, | 345 kColorId_TableGroupingIndicatorColor, |
| 347 // Table Header | 346 // Table Header |
| 348 kColorId_TableHeaderText, | 347 kColorId_TableHeaderText, |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 private: | 415 private: |
| 417 // Observers to notify when the native theme changes. | 416 // Observers to notify when the native theme changes. |
| 418 base::ObserverList<NativeThemeObserver> native_theme_observers_; | 417 base::ObserverList<NativeThemeObserver> native_theme_observers_; |
| 419 | 418 |
| 420 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 419 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
| 421 }; | 420 }; |
| 422 | 421 |
| 423 } // namespace ui | 422 } // namespace ui |
| 424 | 423 |
| 425 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 424 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
| OLD | NEW |