| 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/renderer/webplugin_impl.h" | 5 #include "content/renderer/webplugin_impl.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/debug/crash_logging.h" | 8 #include "base/debug/crash_logging.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/memory/linked_ptr.h" | 10 #include "base/memory/linked_ptr.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 #include "third_party/WebKit/public/web/WebFrame.h" | 41 #include "third_party/WebKit/public/web/WebFrame.h" |
| 42 #include "third_party/WebKit/public/web/WebInputEvent.h" | 42 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 43 #include "third_party/WebKit/public/web/WebKit.h" | 43 #include "third_party/WebKit/public/web/WebKit.h" |
| 44 #include "third_party/WebKit/public/web/WebPluginContainer.h" | 44 #include "third_party/WebKit/public/web/WebPluginContainer.h" |
| 45 #include "third_party/WebKit/public/web/WebPluginParams.h" | 45 #include "third_party/WebKit/public/web/WebPluginParams.h" |
| 46 #include "third_party/WebKit/public/web/WebURLLoaderOptions.h" | 46 #include "third_party/WebKit/public/web/WebURLLoaderOptions.h" |
| 47 #include "third_party/WebKit/public/web/WebView.h" | 47 #include "third_party/WebKit/public/web/WebView.h" |
| 48 #include "ui/gfx/rect.h" | 48 #include "ui/gfx/rect.h" |
| 49 #include "url/gurl.h" | 49 #include "url/gurl.h" |
| 50 #include "url/url_util.h" | 50 #include "url/url_util.h" |
| 51 #include "webkit/glue/multipart_response_delegate.h" | 51 #include "webkit/child/multipart_response_delegate.h" |
| 52 #include "webkit/plugins/plugin_constants.h" | 52 #include "webkit/plugins/plugin_constants.h" |
| 53 #include "webkit/renderer/appcache/web_application_cache_host_impl.h" | 53 #include "webkit/renderer/appcache/web_application_cache_host_impl.h" |
| 54 #include "webkit/renderer/compositor_bindings/web_layer_impl.h" | 54 #include "webkit/renderer/compositor_bindings/web_layer_impl.h" |
| 55 | 55 |
| 56 using appcache::WebApplicationCacheHostImpl; | 56 using appcache::WebApplicationCacheHostImpl; |
| 57 using WebKit::WebCanvas; | 57 using WebKit::WebCanvas; |
| 58 using WebKit::WebConsoleMessage; | 58 using WebKit::WebConsoleMessage; |
| 59 using WebKit::WebCookieJar; | 59 using WebKit::WebCookieJar; |
| 60 using WebKit::WebCString; | 60 using WebKit::WebCString; |
| 61 using WebKit::WebCursorInfo; | 61 using WebKit::WebCursorInfo; |
| (...skipping 1405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1467 case PLUGIN_SRC: | 1467 case PLUGIN_SRC: |
| 1468 webframe_->setReferrerForRequest(*request, plugin_url_); | 1468 webframe_->setReferrerForRequest(*request, plugin_url_); |
| 1469 break; | 1469 break; |
| 1470 | 1470 |
| 1471 default: | 1471 default: |
| 1472 break; | 1472 break; |
| 1473 } | 1473 } |
| 1474 } | 1474 } |
| 1475 | 1475 |
| 1476 } // namespace content | 1476 } // namespace content |
| OLD | NEW |