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