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

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

Issue 146693015: Plumbs through support for painting the scrollbarcorner (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: bad upload Created 6 years, 10 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 | « no previous file | ui/native_theme/native_theme_aurawin.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 "third_party/skia/include/core/SkColor.h" 8 #include "third_party/skia/include/core/SkColor.h"
9 #include "ui/gfx/native_widget_types.h" 9 #include "ui/gfx/native_widget_types.h"
10 #include "ui/native_theme/native_theme_export.h" 10 #include "ui/native_theme/native_theme_export.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 kScrollbarLeftArrow, 59 kScrollbarLeftArrow,
60 kScrollbarRightArrow, 60 kScrollbarRightArrow,
61 kScrollbarUpArrow, 61 kScrollbarUpArrow,
62 62
63 kScrollbarHorizontalThumb, 63 kScrollbarHorizontalThumb,
64 kScrollbarVerticalThumb, 64 kScrollbarVerticalThumb,
65 kScrollbarHorizontalTrack, 65 kScrollbarHorizontalTrack,
66 kScrollbarVerticalTrack, 66 kScrollbarVerticalTrack,
67 kScrollbarHorizontalGripper, 67 kScrollbarHorizontalGripper,
68 kScrollbarVerticalGripper, 68 kScrollbarVerticalGripper,
69 // The corner is drawn when there is both a horizontal and vertical
70 // scrollbar.
71 kScrollbarCorner,
69 kSliderTrack, 72 kSliderTrack,
70 kSliderThumb, 73 kSliderThumb,
71 kTabPanelBackground, 74 kTabPanelBackground,
72 kTextField, 75 kTextField,
73 kTrackbarThumb, 76 kTrackbarThumb,
74 kTrackbarTrack, 77 kTrackbarTrack,
75 kWindowResizeGripper, 78 kWindowResizeGripper,
76 kMaxPart, 79 kMaxPart,
77 }; 80 };
78 81
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 unsigned int thumb_inactive_color_; 300 unsigned int thumb_inactive_color_;
298 unsigned int thumb_active_color_; 301 unsigned int thumb_active_color_;
299 unsigned int track_color_; 302 unsigned int track_color_;
300 303
301 DISALLOW_COPY_AND_ASSIGN(NativeTheme); 304 DISALLOW_COPY_AND_ASSIGN(NativeTheme);
302 }; 305 };
303 306
304 } // namespace ui 307 } // namespace ui
305 308
306 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ 309 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_
OLDNEW
« no previous file with comments | « no previous file | ui/native_theme/native_theme_aurawin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698