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

Side by Side Diff: content/renderer/webplugin_delegate_proxy.cc

Issue 9340012: Move gpu client files to content_common, in content/common/gpu/client (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove unneeded enums Created 8 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
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | no next file » | 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_USES_GTK) 7 #if defined(TOOLKIT_USES_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 11 matching lines...) Expand all
22 #include "base/string_util.h" 22 #include "base/string_util.h"
23 #include "base/utf_string_conversions.h" 23 #include "base/utf_string_conversions.h"
24 #include "base/version.h" 24 #include "base/version.h"
25 #include "content/common/child_process.h" 25 #include "content/common/child_process.h"
26 #include "content/common/npobject_proxy.h" 26 #include "content/common/npobject_proxy.h"
27 #include "content/common/npobject_stub.h" 27 #include "content/common/npobject_stub.h"
28 #include "content/common/npobject_util.h" 28 #include "content/common/npobject_util.h"
29 #include "content/common/plugin_messages.h" 29 #include "content/common/plugin_messages.h"
30 #include "content/common/view_messages.h" 30 #include "content/common/view_messages.h"
31 #include "content/public/renderer/content_renderer_client.h" 31 #include "content/public/renderer/content_renderer_client.h"
32 #include "content/renderer/gpu/command_buffer_proxy.h"
33 #include "content/renderer/plugin_channel_host.h" 32 #include "content/renderer/plugin_channel_host.h"
34 #include "content/renderer/render_thread_impl.h" 33 #include "content/renderer/render_thread_impl.h"
35 #include "content/renderer/render_view_impl.h" 34 #include "content/renderer/render_view_impl.h"
36 #include "ipc/ipc_channel_handle.h" 35 #include "ipc/ipc_channel_handle.h"
37 #include "net/base/mime_util.h" 36 #include "net/base/mime_util.h"
38 #include "skia/ext/platform_canvas.h" 37 #include "skia/ext/platform_canvas.h"
39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" 38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h"
40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" 39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h"
41 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" 40 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
42 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebDragData. h" 41 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebDragData. h"
(...skipping 1405 matching lines...) Expand 10 before | Expand all | Expand 10 after
1448 } 1447 }
1449 #endif 1448 #endif
1450 1449
1451 void WebPluginDelegateProxy::OnURLRedirectResponse(bool allow, 1450 void WebPluginDelegateProxy::OnURLRedirectResponse(bool allow,
1452 int resource_id) { 1451 int resource_id) {
1453 if (!plugin_) 1452 if (!plugin_)
1454 return; 1453 return;
1455 1454
1456 plugin_->URLRedirectResponse(allow, resource_id); 1455 plugin_->URLRedirectResponse(allow, resource_id);
1457 } 1456 }
OLDNEW
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698