| 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/npapi/webplugin_impl.h" | 5 #include "content/renderer/npapi/webplugin_impl.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 #include "base/debug/crash_logging.h" | 9 #include "base/debug/crash_logging.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "content/renderer/npapi/webplugin_delegate_proxy.h" | 26 #include "content/renderer/npapi/webplugin_delegate_proxy.h" |
| 27 #include "content/renderer/render_process.h" | 27 #include "content/renderer/render_process.h" |
| 28 #include "content/renderer/render_thread_impl.h" | 28 #include "content/renderer/render_thread_impl.h" |
| 29 #include "content/renderer/render_view_impl.h" | 29 #include "content/renderer/render_view_impl.h" |
| 30 #include "net/base/escape.h" | 30 #include "net/base/escape.h" |
| 31 #include "net/base/net_errors.h" | 31 #include "net/base/net_errors.h" |
| 32 #include "net/http/http_response_headers.h" | 32 #include "net/http/http_response_headers.h" |
| 33 #include "skia/ext/platform_canvas.h" | 33 #include "skia/ext/platform_canvas.h" |
| 34 #include "third_party/WebKit/public/platform/WebCString.h" | 34 #include "third_party/WebKit/public/platform/WebCString.h" |
| 35 #include "third_party/WebKit/public/platform/WebCookieJar.h" | 35 #include "third_party/WebKit/public/platform/WebCookieJar.h" |
| 36 #include "third_party/WebKit/public/platform/WebCursorInfo.h" |
| 36 #include "third_party/WebKit/public/platform/WebData.h" | 37 #include "third_party/WebKit/public/platform/WebData.h" |
| 37 #include "third_party/WebKit/public/platform/WebHTTPBody.h" | 38 #include "third_party/WebKit/public/platform/WebHTTPBody.h" |
| 38 #include "third_party/WebKit/public/platform/WebHTTPHeaderVisitor.h" | 39 #include "third_party/WebKit/public/platform/WebHTTPHeaderVisitor.h" |
| 39 #include "third_party/WebKit/public/platform/WebURL.h" | 40 #include "third_party/WebKit/public/platform/WebURL.h" |
| 40 #include "third_party/WebKit/public/platform/WebURLError.h" | 41 #include "third_party/WebKit/public/platform/WebURLError.h" |
| 41 #include "third_party/WebKit/public/platform/WebURLLoader.h" | 42 #include "third_party/WebKit/public/platform/WebURLLoader.h" |
| 42 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" | 43 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" |
| 43 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 44 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
| 44 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 45 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
| 45 #include "third_party/WebKit/public/web/WebCursorInfo.h" | |
| 46 #include "third_party/WebKit/public/web/WebDocument.h" | 46 #include "third_party/WebKit/public/web/WebDocument.h" |
| 47 #include "third_party/WebKit/public/web/WebFrame.h" | 47 #include "third_party/WebKit/public/web/WebFrame.h" |
| 48 #include "third_party/WebKit/public/web/WebInputEvent.h" | 48 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 49 #include "third_party/WebKit/public/web/WebKit.h" | 49 #include "third_party/WebKit/public/web/WebKit.h" |
| 50 #include "third_party/WebKit/public/web/WebPluginContainer.h" | 50 #include "third_party/WebKit/public/web/WebPluginContainer.h" |
| 51 #include "third_party/WebKit/public/web/WebPluginParams.h" | 51 #include "third_party/WebKit/public/web/WebPluginParams.h" |
| 52 #include "third_party/WebKit/public/web/WebURLLoaderOptions.h" | 52 #include "third_party/WebKit/public/web/WebURLLoaderOptions.h" |
| 53 #include "third_party/WebKit/public/web/WebView.h" | 53 #include "third_party/WebKit/public/web/WebView.h" |
| 54 #include "ui/gfx/rect.h" | 54 #include "ui/gfx/rect.h" |
| 55 #include "url/gurl.h" | 55 #include "url/gurl.h" |
| (...skipping 1441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1497 case PLUGIN_SRC: | 1497 case PLUGIN_SRC: |
| 1498 webframe_->setReferrerForRequest(*request, plugin_url_); | 1498 webframe_->setReferrerForRequest(*request, plugin_url_); |
| 1499 break; | 1499 break; |
| 1500 | 1500 |
| 1501 default: | 1501 default: |
| 1502 break; | 1502 break; |
| 1503 } | 1503 } |
| 1504 } | 1504 } |
| 1505 | 1505 |
| 1506 } // namespace content | 1506 } // namespace content |
| OLD | NEW |