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/observer_list.h" | 8 #include "base/observer_list.h" |
9 #include "third_party/skia/include/core/SkColor.h" | 9 #include "third_party/skia/include/core/SkColor.h" |
10 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 kColorId_ResultsTableSelectedText, | 315 kColorId_ResultsTableSelectedText, |
316 kColorId_ResultsTableNormalDimmedText, | 316 kColorId_ResultsTableNormalDimmedText, |
317 kColorId_ResultsTableHoveredDimmedText, | 317 kColorId_ResultsTableHoveredDimmedText, |
318 kColorId_ResultsTableSelectedDimmedText, | 318 kColorId_ResultsTableSelectedDimmedText, |
319 kColorId_ResultsTableNormalHeadline, | 319 kColorId_ResultsTableNormalHeadline, |
320 kColorId_ResultsTableHoveredHeadline, | 320 kColorId_ResultsTableHoveredHeadline, |
321 kColorId_ResultsTableSelectedHeadline, | 321 kColorId_ResultsTableSelectedHeadline, |
322 kColorId_ResultsTableNormalUrl, | 322 kColorId_ResultsTableNormalUrl, |
323 kColorId_ResultsTableHoveredUrl, | 323 kColorId_ResultsTableHoveredUrl, |
324 kColorId_ResultsTableSelectedUrl, | 324 kColorId_ResultsTableSelectedUrl, |
325 kColorId_ResultsTableNormalDivider, | |
326 kColorId_ResultsTableHoveredDivider, | |
327 kColorId_ResultsTableSelectedDivider, | |
328 // Positive text refers to good (often rendered in green) text, such as the | 325 // Positive text refers to good (often rendered in green) text, such as the |
329 // stock value went up. | 326 // stock value went up. |
330 kColorId_ResultsTablePositiveText, | 327 kColorId_ResultsTablePositiveText, |
331 kColorId_ResultsTablePositiveHoveredText, | 328 kColorId_ResultsTablePositiveHoveredText, |
332 kColorId_ResultsTablePositiveSelectedText, | 329 kColorId_ResultsTablePositiveSelectedText, |
333 // Negative text refers to something alarming (often rendered in red), such | 330 // Negative text refers to something alarming (often rendered in red), such |
334 // as the stock value went down. | 331 // as the stock value went down. |
335 kColorId_ResultsTableNegativeText, | 332 kColorId_ResultsTableNegativeText, |
336 kColorId_ResultsTableNegativeHoveredText, | 333 kColorId_ResultsTableNegativeHoveredText, |
337 kColorId_ResultsTableNegativeSelectedText, | 334 kColorId_ResultsTableNegativeSelectedText, |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 private: | 369 private: |
373 // Observers to notify when the native theme changes. | 370 // Observers to notify when the native theme changes. |
374 base::ObserverList<NativeThemeObserver> native_theme_observers_; | 371 base::ObserverList<NativeThemeObserver> native_theme_observers_; |
375 | 372 |
376 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 373 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
377 }; | 374 }; |
378 | 375 |
379 } // namespace ui | 376 } // namespace ui |
380 | 377 |
381 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 378 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
OLD | NEW |