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

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

Issue 12096094: Finalizing the 'OnClick' behavior of the Launcher items. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Created 7 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
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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 // TextButton 233 // TextButton
234 kColorId_TextButtonBackgroundColor, 234 kColorId_TextButtonBackgroundColor,
235 kColorId_TextButtonEnabledColor, 235 kColorId_TextButtonEnabledColor,
236 kColorId_TextButtonDisabledColor, 236 kColorId_TextButtonDisabledColor,
237 kColorId_TextButtonHighlightColor, 237 kColorId_TextButtonHighlightColor,
238 kColorId_TextButtonHoverColor, 238 kColorId_TextButtonHoverColor,
239 // MenuItem 239 // MenuItem
240 kColorId_EnabledMenuItemForegroundColor, 240 kColorId_EnabledMenuItemForegroundColor,
241 kColorId_DisabledMenuItemForegroundColor, 241 kColorId_DisabledMenuItemForegroundColor,
242 kColorId_FocusedMenuItemBackgroundColor, 242 kColorId_FocusedMenuItemBackgroundColor,
243 kColorId_FocusedSelectedMenuItemBackground,
243 kColorId_MenuSeparatorColor, 244 kColorId_MenuSeparatorColor,
244 kColorId_MenuBackgroundColor, 245 kColorId_MenuBackgroundColor,
245 kColorId_MenuBorderColor, 246 kColorId_MenuBorderColor,
247 kColorId_SelectedMenuItemBackground,
246 // Label 248 // Label
247 kColorId_LabelEnabledColor, 249 kColorId_LabelEnabledColor,
248 kColorId_LabelDisabledColor, 250 kColorId_LabelDisabledColor,
249 kColorId_LabelBackgroundColor, 251 kColorId_LabelBackgroundColor,
250 // Textfield 252 // Textfield
251 kColorId_TextfieldDefaultColor, 253 kColorId_TextfieldDefaultColor,
252 kColorId_TextfieldDefaultBackground, 254 kColorId_TextfieldDefaultBackground,
253 kColorId_TextfieldReadOnlyColor, 255 kColorId_TextfieldReadOnlyColor,
254 kColorId_TextfieldReadOnlyBackground, 256 kColorId_TextfieldReadOnlyBackground,
255 kColorId_TextfieldSelectionColor, 257 kColorId_TextfieldSelectionColor,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 unsigned int thumb_inactive_color_; 295 unsigned int thumb_inactive_color_;
294 unsigned int thumb_active_color_; 296 unsigned int thumb_active_color_;
295 unsigned int track_color_; 297 unsigned int track_color_;
296 298
297 DISALLOW_COPY_AND_ASSIGN(NativeTheme); 299 DISALLOW_COPY_AND_ASSIGN(NativeTheme);
298 }; 300 };
299 301
300 } // namespace ui 302 } // namespace ui
301 303
302 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ 304 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698