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

Side by Side Diff: webkit/glue/webthemeengine_impl_default.cc

Issue 11299074: Make use_aura set use_default_render_theme and moves (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Merge 2 trunk and update some ifdefs 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
« no previous file with comments | « webkit/glue/webthemeengine_impl_default.h ('k') | webkit/glue/webthemeengine_impl_linux.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 #include "webkit/glue/webthemeengine_impl_linux.h" 5 #include "webkit/glue/webthemeengine_impl_default.h"
6 6
7 #include "skia/ext/platform_canvas.h" 7 #include "skia/ext/platform_canvas.h"
8 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h" 8 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebSize.h"
10 #include "ui/native_theme/native_theme.h" 10 #include "ui/native_theme/native_theme.h"
11 11
12 using WebKit::WebCanvas; 12 using WebKit::WebCanvas;
13 using WebKit::WebColor; 13 using WebKit::WebColor;
14 using WebKit::WebRect; 14 using WebKit::WebRect;
15 using WebKit::WebThemeEngine; 15 using WebKit::WebThemeEngine;
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 part, state, extra_params, &native_theme_extra_params); 176 part, state, extra_params, &native_theme_extra_params);
177 ui::NativeTheme::instance()->Paint( 177 ui::NativeTheme::instance()->Paint(
178 canvas, 178 canvas,
179 NativeThemePart(part), 179 NativeThemePart(part),
180 NativeThemeState(state), 180 NativeThemeState(state),
181 gfx::Rect(rect), 181 gfx::Rect(rect),
182 native_theme_extra_params); 182 native_theme_extra_params);
183 } 183 }
184 184
185 } // namespace webkit_glue 185 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/webthemeengine_impl_default.h ('k') | webkit/glue/webthemeengine_impl_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698