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

Side by Side Diff: content/renderer/webplugin_delegate_proxy.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
« no previous file with comments | « content/renderer/render_widget.h ('k') | webkit/common/cursors/webcursor.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 "content/renderer/webplugin_delegate_proxy.h" 5 #include "content/renderer/webplugin_delegate_proxy.h"
6 6
7 #if defined(TOOLKIT_GTK) 7 #if defined(TOOLKIT_GTK)
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 #elif defined(USE_X11) 9 #elif defined(USE_X11)
10 #include <cairo/cairo.h> 10 #include <cairo/cairo.h>
(...skipping 30 matching lines...) Expand all
41 #include "third_party/WebKit/public/platform/WebString.h" 41 #include "third_party/WebKit/public/platform/WebString.h"
42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" 42 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h"
43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 43 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" 44 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h"
45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" 45 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
46 #include "ui/gfx/blit.h" 46 #include "ui/gfx/blit.h"
47 #include "ui/gfx/canvas.h" 47 #include "ui/gfx/canvas.h"
48 #include "ui/gfx/native_widget_types.h" 48 #include "ui/gfx/native_widget_types.h"
49 #include "ui/gfx/size.h" 49 #include "ui/gfx/size.h"
50 #include "ui/gfx/skia_util.h" 50 #include "ui/gfx/skia_util.h"
51 #include "webkit/glue/webcursor.h" 51 #include "webkit/common/cursors/webcursor.h"
52 #include "webkit/glue/webkit_glue.h" 52 #include "webkit/glue/webkit_glue.h"
53 #include "webkit/plugins/npapi/webplugin.h" 53 #include "webkit/plugins/npapi/webplugin.h"
54 #include "webkit/plugins/plugin_constants.h" 54 #include "webkit/plugins/plugin_constants.h"
55 #include "webkit/plugins/sad_plugin.h" 55 #include "webkit/plugins/sad_plugin.h"
56 56
57 #if defined(OS_POSIX) 57 #if defined(OS_POSIX)
58 #include "ipc/ipc_channel_posix.h" 58 #include "ipc/ipc_channel_posix.h"
59 #endif 59 #endif
60 60
61 #if defined(OS_MACOSX) 61 #if defined(OS_MACOSX)
(...skipping 1144 matching lines...) Expand 10 before | Expand all | Expand 10 after
1206 1206
1207 void WebPluginDelegateProxy::OnURLRedirectResponse(bool allow, 1207 void WebPluginDelegateProxy::OnURLRedirectResponse(bool allow,
1208 int resource_id) { 1208 int resource_id) {
1209 if (!plugin_) 1209 if (!plugin_)
1210 return; 1210 return;
1211 1211
1212 plugin_->URLRedirectResponse(allow, resource_id); 1212 plugin_->URLRedirectResponse(allow, resource_id);
1213 } 1213 }
1214 1214
1215 } // namespace content 1215 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_widget.h ('k') | webkit/common/cursors/webcursor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698