Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: ui/native_theme/native_theme.h

Issue 290573003: Make tooltips toplevel windows on Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/native_theme/fallback_theme.cc ('k') | ui/views/corewm/tooltip_aura.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « ui/native_theme/fallback_theme.cc ('k') | ui/views/corewm/tooltip_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698