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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 kColorId_LabelBackgroundColor, | 264 kColorId_LabelBackgroundColor, |
265 // Textfield | 265 // Textfield |
266 kColorId_TextfieldDefaultColor, | 266 kColorId_TextfieldDefaultColor, |
267 kColorId_TextfieldDefaultBackground, | 267 kColorId_TextfieldDefaultBackground, |
268 kColorId_TextfieldReadOnlyColor, | 268 kColorId_TextfieldReadOnlyColor, |
269 kColorId_TextfieldReadOnlyBackground, | 269 kColorId_TextfieldReadOnlyBackground, |
270 kColorId_TextfieldSelectionColor, | 270 kColorId_TextfieldSelectionColor, |
271 kColorId_TextfieldSelectionBackgroundFocused, | 271 kColorId_TextfieldSelectionBackgroundFocused, |
272 // Tooltip | 272 // Tooltip |
273 kColorId_TooltipBackground, | 273 kColorId_TooltipBackground, |
| 274 kColorId_TooltipText, |
274 // Tree | 275 // Tree |
275 kColorId_TreeBackground, | 276 kColorId_TreeBackground, |
276 kColorId_TreeText, | 277 kColorId_TreeText, |
277 kColorId_TreeSelectedText, | 278 kColorId_TreeSelectedText, |
278 kColorId_TreeSelectedTextUnfocused, | 279 kColorId_TreeSelectedTextUnfocused, |
279 kColorId_TreeSelectionBackgroundFocused, | 280 kColorId_TreeSelectionBackgroundFocused, |
280 kColorId_TreeSelectionBackgroundUnfocused, | 281 kColorId_TreeSelectionBackgroundUnfocused, |
281 kColorId_TreeArrow, | 282 kColorId_TreeArrow, |
282 // Table | 283 // Table |
283 kColorId_TableBackground, | 284 kColorId_TableBackground, |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 private: | 335 private: |
335 // Observers to notify when the native theme changes. | 336 // Observers to notify when the native theme changes. |
336 ObserverList<NativeThemeObserver> native_theme_observers_; | 337 ObserverList<NativeThemeObserver> native_theme_observers_; |
337 | 338 |
338 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 339 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
339 }; | 340 }; |
340 | 341 |
341 } // namespace ui | 342 } // namespace ui |
342 | 343 |
343 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 344 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
OLD | NEW |