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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 kColorId_TreeSelectionBackgroundUnfocused, | 314 kColorId_TreeSelectionBackgroundUnfocused, |
315 kColorId_TreeArrow, | 315 kColorId_TreeArrow, |
316 // Table | 316 // Table |
317 kColorId_TableBackground, | 317 kColorId_TableBackground, |
318 kColorId_TableText, | 318 kColorId_TableText, |
319 kColorId_TableSelectedText, | 319 kColorId_TableSelectedText, |
320 kColorId_TableSelectedTextUnfocused, | 320 kColorId_TableSelectedTextUnfocused, |
321 kColorId_TableSelectionBackgroundFocused, | 321 kColorId_TableSelectionBackgroundFocused, |
322 kColorId_TableSelectionBackgroundUnfocused, | 322 kColorId_TableSelectionBackgroundUnfocused, |
323 kColorId_TableGroupingIndicatorColor, | 323 kColorId_TableGroupingIndicatorColor, |
| 324 // Table Header |
| 325 kColorId_TableHeaderText, |
| 326 kColorId_TableHeaderBackground, |
| 327 kColorId_TableHeaderSeparator, |
324 // Results Tables, such as the omnibox. | 328 // Results Tables, such as the omnibox. |
325 kColorId_ResultsTableNormalBackground, | 329 kColorId_ResultsTableNormalBackground, |
326 kColorId_ResultsTableHoveredBackground, | 330 kColorId_ResultsTableHoveredBackground, |
327 kColorId_ResultsTableSelectedBackground, | 331 kColorId_ResultsTableSelectedBackground, |
328 kColorId_ResultsTableNormalText, | 332 kColorId_ResultsTableNormalText, |
329 kColorId_ResultsTableHoveredText, | 333 kColorId_ResultsTableHoveredText, |
330 kColorId_ResultsTableSelectedText, | 334 kColorId_ResultsTableSelectedText, |
331 kColorId_ResultsTableNormalDimmedText, | 335 kColorId_ResultsTableNormalDimmedText, |
332 kColorId_ResultsTableHoveredDimmedText, | 336 kColorId_ResultsTableHoveredDimmedText, |
333 kColorId_ResultsTableSelectedDimmedText, | 337 kColorId_ResultsTableSelectedDimmedText, |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 private: | 393 private: |
390 // Observers to notify when the native theme changes. | 394 // Observers to notify when the native theme changes. |
391 base::ObserverList<NativeThemeObserver> native_theme_observers_; | 395 base::ObserverList<NativeThemeObserver> native_theme_observers_; |
392 | 396 |
393 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 397 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
394 }; | 398 }; |
395 | 399 |
396 } // namespace ui | 400 } // namespace ui |
397 | 401 |
398 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 402 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
OLD | NEW |