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 "webkit/plugins/ppapi/ppapi_webplugin_impl.h" | 5 #include "content/renderer/pepper/ppapi_webplugin_impl.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 | 8 |
9 #include "base/debug/crash_logging.h" | 9 #include "base/debug/crash_logging.h" |
10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| 11 #include "content/renderer/pepper/message_channel.h" |
| 12 #include "content/renderer/pepper/npobject_var.h" |
| 13 #include "content/renderer/pepper/plugin_module.h" |
| 14 #include "content/renderer/pepper/ppapi_plugin_instance_impl.h" |
11 #include "ppapi/shared_impl/ppapi_globals.h" | 15 #include "ppapi/shared_impl/ppapi_globals.h" |
12 #include "ppapi/shared_impl/var_tracker.h" | 16 #include "ppapi/shared_impl/var_tracker.h" |
13 #include "third_party/WebKit/public/platform/WebPoint.h" | 17 #include "third_party/WebKit/public/platform/WebPoint.h" |
14 #include "third_party/WebKit/public/platform/WebRect.h" | 18 #include "third_party/WebKit/public/platform/WebRect.h" |
15 #include "third_party/WebKit/public/platform/WebSize.h" | 19 #include "third_party/WebKit/public/platform/WebSize.h" |
16 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" | 20 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" |
17 #include "third_party/WebKit/public/web/WebBindings.h" | 21 #include "third_party/WebKit/public/web/WebBindings.h" |
18 #include "third_party/WebKit/public/web/WebDocument.h" | 22 #include "third_party/WebKit/public/web/WebDocument.h" |
19 #include "third_party/WebKit/public/web/WebElement.h" | 23 #include "third_party/WebKit/public/web/WebElement.h" |
20 #include "third_party/WebKit/public/web/WebFrame.h" | 24 #include "third_party/WebKit/public/web/WebFrame.h" |
21 #include "third_party/WebKit/public/web/WebPluginContainer.h" | 25 #include "third_party/WebKit/public/web/WebPluginContainer.h" |
22 #include "third_party/WebKit/public/web/WebPluginParams.h" | 26 #include "third_party/WebKit/public/web/WebPluginParams.h" |
23 #include "third_party/WebKit/public/web/WebPrintParams.h" | 27 #include "third_party/WebKit/public/web/WebPrintParams.h" |
24 #include "third_party/WebKit/public/web/WebPrintScalingOption.h" | 28 #include "third_party/WebKit/public/web/WebPrintScalingOption.h" |
25 #include "third_party/WebKit/public/web/WebView.h" | 29 #include "third_party/WebKit/public/web/WebView.h" |
26 #include "url/gurl.h" | 30 #include "url/gurl.h" |
27 #include "webkit/plugins/ppapi/message_channel.h" | |
28 #include "webkit/plugins/ppapi/npobject_var.h" | |
29 #include "webkit/plugins/ppapi/plugin_module.h" | |
30 #include "webkit/plugins/ppapi/ppapi_plugin_instance_impl.h" | |
31 | 31 |
32 using ppapi::NPObjectVar; | 32 using ppapi::NPObjectVar; |
33 using WebKit::WebCanvas; | 33 using WebKit::WebCanvas; |
34 using WebKit::WebPlugin; | 34 using WebKit::WebPlugin; |
35 using WebKit::WebPluginContainer; | 35 using WebKit::WebPluginContainer; |
36 using WebKit::WebPluginParams; | 36 using WebKit::WebPluginParams; |
37 using WebKit::WebPoint; | 37 using WebKit::WebPoint; |
38 using WebKit::WebPrintParams; | 38 using WebKit::WebPrintParams; |
39 using WebKit::WebRect; | 39 using WebKit::WebRect; |
40 using WebKit::WebSize; | 40 using WebKit::WebSize; |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 void WebPluginImpl::rotateView(RotationType type) { | 299 void WebPluginImpl::rotateView(RotationType type) { |
300 instance_->RotateView(type); | 300 instance_->RotateView(type); |
301 } | 301 } |
302 | 302 |
303 bool WebPluginImpl::isPlaceholder() { | 303 bool WebPluginImpl::isPlaceholder() { |
304 return false; | 304 return false; |
305 } | 305 } |
306 | 306 |
307 } // namespace ppapi | 307 } // namespace ppapi |
308 } // namespace webkit | 308 } // namespace webkit |
OLD | NEW |