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

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

Issue 6864001: Move RenderProcess to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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.cc ('k') | webkit/plugins/ppapi/plugin_delegate.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #endif 9 #endif
10 10
11 #include <algorithm> 11 #include <algorithm>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/file_util.h" 15 #include "base/file_util.h"
16 #include "base/logging.h" 16 #include "base/logging.h"
17 #include "base/memory/ref_counted.h" 17 #include "base/memory/ref_counted.h"
18 #include "base/memory/scoped_ptr.h" 18 #include "base/memory/scoped_ptr.h"
19 #include "base/string_split.h" 19 #include "base/string_split.h"
20 #include "base/string_util.h" 20 #include "base/string_util.h"
21 #include "base/sys_info.h" 21 #include "base/sys_info.h"
22 #include "base/utf_string_conversions.h" 22 #include "base/utf_string_conversions.h"
23 #include "chrome/common/child_process_logging.h" 23 #include "chrome/common/child_process_logging.h"
24 #include "chrome/common/render_messages.h" 24 #include "chrome/common/render_messages.h"
25 #include "content/common/child_process.h"
25 #include "content/common/plugin_messages.h" 26 #include "content/common/plugin_messages.h"
26 #include "content/common/view_messages.h" 27 #include "content/common/view_messages.h"
27 #include "content/plugin/npobject_proxy.h" 28 #include "content/plugin/npobject_proxy.h"
28 #include "content/plugin/npobject_stub.h" 29 #include "content/plugin/npobject_stub.h"
29 #include "content/plugin/npobject_util.h" 30 #include "content/plugin/npobject_util.h"
30 #include "content/renderer/command_buffer_proxy.h" 31 #include "content/renderer/command_buffer_proxy.h"
31 #include "content/renderer/content_renderer_client.h" 32 #include "content/renderer/content_renderer_client.h"
32 #include "content/renderer/plugin_channel_host.h" 33 #include "content/renderer/plugin_channel_host.h"
33 #include "content/renderer/render_thread.h" 34 #include "content/renderer/render_thread.h"
34 #include "content/renderer/render_view.h" 35 #include "content/renderer/render_view.h"
(...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1386 } 1387 }
1387 #endif 1388 #endif
1388 1389
1389 void WebPluginDelegateProxy::OnURLRedirectResponse(bool allow, 1390 void WebPluginDelegateProxy::OnURLRedirectResponse(bool allow,
1390 int resource_id) { 1391 int resource_id) {
1391 if (!plugin_) 1392 if (!plugin_)
1392 return; 1393 return;
1393 1394
1394 plugin_->URLRedirectResponse(allow, resource_id); 1395 plugin_->URLRedirectResponse(allow, resource_id);
1395 } 1396 }
OLDNEW
« no previous file with comments | « content/renderer/render_widget.cc ('k') | webkit/plugins/ppapi/plugin_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698