| 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 "webkit/plugins/ppapi/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.h" | 10 #include "base/message_loop.h" |
| 11 #include "googleurl/src/gurl.h" | |
| 12 #include "ppapi/shared_impl/ppapi_globals.h" | 11 #include "ppapi/shared_impl/ppapi_globals.h" |
| 13 #include "ppapi/shared_impl/var_tracker.h" | 12 #include "ppapi/shared_impl/var_tracker.h" |
| 14 #include "third_party/WebKit/public/platform/WebPoint.h" | 13 #include "third_party/WebKit/public/platform/WebPoint.h" |
| 15 #include "third_party/WebKit/public/platform/WebRect.h" | 14 #include "third_party/WebKit/public/platform/WebRect.h" |
| 16 #include "third_party/WebKit/public/platform/WebSize.h" | 15 #include "third_party/WebKit/public/platform/WebSize.h" |
| 17 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" | 16 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" |
| 18 #include "third_party/WebKit/public/web/WebBindings.h" | 17 #include "third_party/WebKit/public/web/WebBindings.h" |
| 19 #include "third_party/WebKit/public/web/WebDocument.h" | 18 #include "third_party/WebKit/public/web/WebDocument.h" |
| 20 #include "third_party/WebKit/public/web/WebElement.h" | 19 #include "third_party/WebKit/public/web/WebElement.h" |
| 21 #include "third_party/WebKit/public/web/WebFrame.h" | 20 #include "third_party/WebKit/public/web/WebFrame.h" |
| 22 #include "third_party/WebKit/public/web/WebPluginContainer.h" | 21 #include "third_party/WebKit/public/web/WebPluginContainer.h" |
| 23 #include "third_party/WebKit/public/web/WebPluginParams.h" | 22 #include "third_party/WebKit/public/web/WebPluginParams.h" |
| 24 #include "third_party/WebKit/public/web/WebPrintParams.h" | 23 #include "third_party/WebKit/public/web/WebPrintParams.h" |
| 25 #include "third_party/WebKit/public/web/WebPrintScalingOption.h" | 24 #include "third_party/WebKit/public/web/WebPrintScalingOption.h" |
| 26 #include "third_party/WebKit/public/web/WebView.h" | 25 #include "third_party/WebKit/public/web/WebView.h" |
| 26 #include "url/gurl.h" |
| 27 #include "webkit/plugins/ppapi/message_channel.h" | 27 #include "webkit/plugins/ppapi/message_channel.h" |
| 28 #include "webkit/plugins/ppapi/npobject_var.h" | 28 #include "webkit/plugins/ppapi/npobject_var.h" |
| 29 #include "webkit/plugins/ppapi/plugin_module.h" | 29 #include "webkit/plugins/ppapi/plugin_module.h" |
| 30 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 30 #include "webkit/plugins/ppapi/ppapi_plugin_instance.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; |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 void WebPluginImpl::rotateView(RotationType type) { | 295 void WebPluginImpl::rotateView(RotationType type) { |
| 296 instance_->RotateView(type); | 296 instance_->RotateView(type); |
| 297 } | 297 } |
| 298 | 298 |
| 299 bool WebPluginImpl::isPlaceholder() { | 299 bool WebPluginImpl::isPlaceholder() { |
| 300 return false; | 300 return false; |
| 301 } | 301 } |
| 302 | 302 |
| 303 } // namespace ppapi | 303 } // namespace ppapi |
| 304 } // namespace webkit | 304 } // namespace webkit |
| OLD | NEW |