OLD | NEW |
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/plugin/webplugin_delegate_stub.h" | 5 #include "content/plugin/webplugin_delegate_stub.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
11 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
12 #include "content/child/npapi/plugin_instance.h" | 12 #include "content/child/npapi/plugin_instance.h" |
13 #include "content/child/npapi/webplugin_delegate_impl.h" | 13 #include "content/child/npapi/webplugin_delegate_impl.h" |
14 #include "content/child/npapi/webplugin_resource_client.h" | 14 #include "content/child/npapi/webplugin_resource_client.h" |
15 #include "content/child/plugin_messages.h" | 15 #include "content/child/plugin_messages.h" |
16 #include "content/common/cursors/webcursor.h" | 16 #include "content/common/cursors/webcursor.h" |
17 #include "content/plugin/plugin_channel.h" | 17 #include "content/plugin/plugin_channel.h" |
18 #include "content/plugin/plugin_thread.h" | 18 #include "content/plugin/plugin_thread.h" |
19 #include "content/plugin/webplugin_proxy.h" | 19 #include "content/plugin/webplugin_proxy.h" |
20 #include "content/public/common/content_client.h" | 20 #include "content/public/common/content_client.h" |
21 #include "content/public/common/content_constants.h" | 21 #include "content/public/common/content_constants.h" |
22 #include "content/public/common/content_switches.h" | 22 #include "content/public/common/content_switches.h" |
23 #include "skia/ext/platform_device.h" | |
24 #include "third_party/WebKit/public/platform/WebCursorInfo.h" | 23 #include "third_party/WebKit/public/platform/WebCursorInfo.h" |
25 #include "third_party/WebKit/public/web/WebBindings.h" | 24 #include "third_party/WebKit/public/web/WebBindings.h" |
26 #include "third_party/npapi/bindings/npapi.h" | 25 #include "third_party/npapi/bindings/npapi.h" |
27 #include "third_party/npapi/bindings/npruntime.h" | 26 #include "third_party/npapi/bindings/npruntime.h" |
28 | 27 |
29 using blink::WebBindings; | 28 using blink::WebBindings; |
30 using blink::WebCursorInfo; | 29 using blink::WebCursorInfo; |
31 | 30 |
32 namespace content { | 31 namespace content { |
33 | 32 |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 static_cast<unsigned int>(params.post_data.size()), | 427 static_cast<unsigned int>(params.post_data.size()), |
429 Referrer(params.referrer, params.referrer_policy), | 428 Referrer(params.referrer, params.referrer_policy), |
430 params.notify_redirect, | 429 params.notify_redirect, |
431 params.is_plugin_src_load, | 430 params.is_plugin_src_load, |
432 channel_->renderer_id(), | 431 channel_->renderer_id(), |
433 params.render_frame_id, | 432 params.render_frame_id, |
434 webplugin_->host_render_view_routing_id()); | 433 webplugin_->host_render_view_routing_id()); |
435 } | 434 } |
436 | 435 |
437 } // namespace content | 436 } // namespace content |
OLD | NEW |