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

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

Issue 11421204: Use native theme colors for textfields; etc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync and rebase, add a blank line between includes. Created 8 years 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/native_theme.h ('k') | ui/native_theme/native_theme_aura.cc » ('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 #include "ui/native_theme/native_theme.h" 5 #include "ui/native_theme/native_theme.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "ui/base/ui_base_switches.h" 8 #include "ui/base/ui_base_switches.h"
9 9
10 namespace ui { 10 namespace ui {
(...skipping 16 matching lines...) Expand all
27 switches::kEnableNewMenuStyle); 27 switches::kEnableNewMenuStyle);
28 return enable_new_menu_style; 28 return enable_new_menu_style;
29 } 29 }
30 30
31 NativeTheme::NativeTheme() 31 NativeTheme::NativeTheme()
32 : thumb_inactive_color_(0xeaeaea), 32 : thumb_inactive_color_(0xeaeaea),
33 thumb_active_color_(0xf4f4f4), 33 thumb_active_color_(0xf4f4f4),
34 track_color_(0xd3d3d3) { 34 track_color_(0xd3d3d3) {
35 } 35 }
36 36
37 NativeTheme::~NativeTheme() {}
38
37 } // namespace ui 39 } // namespace ui
OLDNEW
« no previous file with comments | « ui/native_theme/native_theme.h ('k') | ui/native_theme/native_theme_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698