| 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 // Results Tables, such as the omnibox. | 317 // Results Tables, such as the omnibox. |
| 318 kColorId_ResultsTableNormalBackground, | 318 kColorId_ResultsTableNormalBackground, |
| 319 kColorId_ResultsTableHoveredBackground, | 319 kColorId_ResultsTableHoveredBackground, |
| 320 kColorId_ResultsTableSelectedBackground, | 320 kColorId_ResultsTableSelectedBackground, |
| 321 kColorId_ResultsTableNormalText, | 321 kColorId_ResultsTableNormalText, |
| 322 kColorId_ResultsTableHoveredText, | 322 kColorId_ResultsTableHoveredText, |
| 323 kColorId_ResultsTableSelectedText, | 323 kColorId_ResultsTableSelectedText, |
| 324 kColorId_ResultsTableNormalDimmedText, | 324 kColorId_ResultsTableNormalDimmedText, |
| 325 kColorId_ResultsTableHoveredDimmedText, | 325 kColorId_ResultsTableHoveredDimmedText, |
| 326 kColorId_ResultsTableSelectedDimmedText, | 326 kColorId_ResultsTableSelectedDimmedText, |
| 327 kColorId_ResultsTableNormalHeadline, | |
| 328 kColorId_ResultsTableHoveredHeadline, | |
| 329 kColorId_ResultsTableSelectedHeadline, | |
| 330 kColorId_ResultsTableNormalUrl, | 327 kColorId_ResultsTableNormalUrl, |
| 331 kColorId_ResultsTableHoveredUrl, | 328 kColorId_ResultsTableHoveredUrl, |
| 332 kColorId_ResultsTableSelectedUrl, | 329 kColorId_ResultsTableSelectedUrl, |
| 333 // Positive text refers to good (often rendered in green) text, such as the | 330 // Positive text refers to good (often rendered in green) text, such as the |
| 334 // stock value went up. | 331 // stock value went up. |
| 335 kColorId_ResultsTablePositiveText, | 332 kColorId_ResultsTablePositiveText, |
| 336 kColorId_ResultsTablePositiveHoveredText, | 333 kColorId_ResultsTablePositiveHoveredText, |
| 337 kColorId_ResultsTablePositiveSelectedText, | 334 kColorId_ResultsTablePositiveSelectedText, |
| 338 // Negative text refers to something alarming (often rendered in red), such | 335 // Negative text refers to something alarming (often rendered in red), such |
| 339 // as the stock value went down. | 336 // as the stock value went down. |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 private: | 375 private: |
| 379 // Observers to notify when the native theme changes. | 376 // Observers to notify when the native theme changes. |
| 380 base::ObserverList<NativeThemeObserver> native_theme_observers_; | 377 base::ObserverList<NativeThemeObserver> native_theme_observers_; |
| 381 | 378 |
| 382 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 379 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
| 383 }; | 380 }; |
| 384 | 381 |
| 385 } // namespace ui | 382 } // namespace ui |
| 386 | 383 |
| 387 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 384 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
| OLD | NEW |