| OLD | NEW |
| 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 "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/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "googleurl/src/gurl.h" | 10 #include "googleurl/src/gurl.h" |
| 11 #include "ppapi/c/pp_var.h" | 11 #include "ppapi/c/pp_var.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h" |
| 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" | 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
| 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" | 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h" |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
| 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginContainer.h" |
| 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" |
| 18 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPoint.h" | 18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebPoint.h" |
| 19 #include "third_party/WebKit/Source/WebKit/chromium/public/WebRect.h" | 19 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebRect.h" |
| 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" | 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" |
| 21 #include "webkit/plugins/ppapi/message_channel.h" | 21 #include "webkit/plugins/ppapi/message_channel.h" |
| 22 #include "webkit/plugins/ppapi/npobject_var.h" | 22 #include "webkit/plugins/ppapi/npobject_var.h" |
| 23 #include "webkit/plugins/ppapi/plugin_module.h" | 23 #include "webkit/plugins/ppapi/plugin_module.h" |
| 24 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 24 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
| 25 #include "webkit/plugins/ppapi/ppb_url_loader_impl.h" | 25 #include "webkit/plugins/ppapi/ppb_url_loader_impl.h" |
| 26 | 26 |
| 27 using ppapi::NPObjectVar; | 27 using ppapi::NPObjectVar; |
| 28 using WebKit::WebCanvas; | 28 using WebKit::WebCanvas; |
| 29 using WebKit::WebPluginContainer; | 29 using WebKit::WebPluginContainer; |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 WebKit::WebCanvas* canvas) { | 251 WebKit::WebCanvas* canvas) { |
| 252 return instance_->PrintPage(page_number, canvas); | 252 return instance_->PrintPage(page_number, canvas); |
| 253 } | 253 } |
| 254 | 254 |
| 255 void WebPluginImpl::printEnd() { | 255 void WebPluginImpl::printEnd() { |
| 256 return instance_->PrintEnd(); | 256 return instance_->PrintEnd(); |
| 257 } | 257 } |
| 258 | 258 |
| 259 } // namespace ppapi | 259 } // namespace ppapi |
| 260 } // namespace webkit | 260 } // namespace webkit |
| OLD | NEW |