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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_win.cc

Issue 15971005: Move the WebCursor sources from webkit/glue to webkit/common/cursors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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
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 "content/browser/renderer_host/render_widget_host_view_win.h" 5 #include "content/browser/renderer_host/render_widget_host_view_win.h"
6 6
7 #include <dwmapi.h> 7 #include <dwmapi.h>
8 #include <InputScope.h> 8 #include <InputScope.h>
9 #include <wtsapi32.h> 9 #include <wtsapi32.h>
10 #pragma comment(lib, "wtsapi32.lib") 10 #pragma comment(lib, "wtsapi32.lib")
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 #include "ui/base/ui_base_switches.h" 66 #include "ui/base/ui_base_switches.h"
67 #include "ui/base/view_prop.h" 67 #include "ui/base/view_prop.h"
68 #include "ui/base/win/dpi.h" 68 #include "ui/base/win/dpi.h"
69 #include "ui/base/win/hwnd_util.h" 69 #include "ui/base/win/hwnd_util.h"
70 #include "ui/base/win/mouse_wheel_util.h" 70 #include "ui/base/win/mouse_wheel_util.h"
71 #include "ui/base/win/touch_input.h" 71 #include "ui/base/win/touch_input.h"
72 #include "ui/gfx/canvas.h" 72 #include "ui/gfx/canvas.h"
73 #include "ui/gfx/rect.h" 73 #include "ui/gfx/rect.h"
74 #include "ui/gfx/rect_conversions.h" 74 #include "ui/gfx/rect_conversions.h"
75 #include "ui/gfx/screen.h" 75 #include "ui/gfx/screen.h"
76 #include "webkit/glue/webcursor.h" 76 #include "webkit/common/cursors/webcursor.h"
77 #include "webkit/plugins/npapi/plugin_constants_win.h" 77 #include "webkit/plugins/npapi/plugin_constants_win.h"
78 #include "webkit/plugins/npapi/webplugin.h" 78 #include "webkit/plugins/npapi/webplugin.h"
79 #include "webkit/plugins/npapi/webplugin_delegate_impl.h" 79 #include "webkit/plugins/npapi/webplugin_delegate_impl.h"
80 #include "win8/util/win8_util.h" 80 #include "win8/util/win8_util.h"
81 81
82 using base::TimeDelta; 82 using base::TimeDelta;
83 using base::TimeTicks; 83 using base::TimeTicks;
84 using ui::ViewProp; 84 using ui::ViewProp;
85 using WebKit::WebInputEvent; 85 using WebKit::WebInputEvent;
86 using WebKit::WebInputEventFactory; 86 using WebKit::WebInputEventFactory;
(...skipping 3050 matching lines...) Expand 10 before | Expand all | Expand 10 after
3137 return new RenderWidgetHostViewWin(widget); 3137 return new RenderWidgetHostViewWin(widget);
3138 } 3138 }
3139 3139
3140 // static 3140 // static
3141 void RenderWidgetHostViewPort::GetDefaultScreenInfo( 3141 void RenderWidgetHostViewPort::GetDefaultScreenInfo(
3142 WebKit::WebScreenInfo* results) { 3142 WebKit::WebScreenInfo* results) {
3143 GetScreenInfoForWindow(results, 0); 3143 GetScreenInfoForWindow(results, 0);
3144 } 3144 }
3145 3145
3146 } // namespace content 3146 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_win.h ('k') | content/common/browser_plugin/browser_plugin_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698