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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 48 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
49 #include "third_party/WebKit/public/web/WebConsoleMessage.h" | 49 #include "third_party/WebKit/public/web/WebConsoleMessage.h" |
50 #include "third_party/WebKit/public/web/WebDocument.h" | 50 #include "third_party/WebKit/public/web/WebDocument.h" |
51 #include "third_party/WebKit/public/web/WebFrame.h" | 51 #include "third_party/WebKit/public/web/WebFrame.h" |
52 #include "third_party/WebKit/public/web/WebInputEvent.h" | 52 #include "third_party/WebKit/public/web/WebInputEvent.h" |
53 #include "third_party/WebKit/public/web/WebKit.h" | 53 #include "third_party/WebKit/public/web/WebKit.h" |
54 #include "third_party/WebKit/public/web/WebPluginContainer.h" | 54 #include "third_party/WebKit/public/web/WebPluginContainer.h" |
55 #include "third_party/WebKit/public/web/WebPluginParams.h" | 55 #include "third_party/WebKit/public/web/WebPluginParams.h" |
56 #include "third_party/WebKit/public/web/WebURLLoaderOptions.h" | 56 #include "third_party/WebKit/public/web/WebURLLoaderOptions.h" |
57 #include "third_party/WebKit/public/web/WebView.h" | 57 #include "third_party/WebKit/public/web/WebView.h" |
58 #include "ui/gfx/rect.h" | 58 #include "ui/gfx/geometry/rect.h" |
59 #include "url/gurl.h" | 59 #include "url/gurl.h" |
60 #include "url/url_util.h" | 60 #include "url/url_util.h" |
61 | 61 |
62 using blink::WebCString; | 62 using blink::WebCString; |
63 using blink::WebCanvas; | 63 using blink::WebCanvas; |
64 using blink::WebConsoleMessage; | 64 using blink::WebConsoleMessage; |
65 using blink::WebCookieJar; | 65 using blink::WebCookieJar; |
66 using blink::WebCursorInfo; | 66 using blink::WebCursorInfo; |
67 using blink::WebData; | 67 using blink::WebData; |
68 using blink::WebDataSource; | 68 using blink::WebDataSource; |
(...skipping 1461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1530 case PLUGIN_SRC: | 1530 case PLUGIN_SRC: |
1531 webframe_->setReferrerForRequest(*request, plugin_url_); | 1531 webframe_->setReferrerForRequest(*request, plugin_url_); |
1532 break; | 1532 break; |
1533 | 1533 |
1534 default: | 1534 default: |
1535 break; | 1535 break; |
1536 } | 1536 } |
1537 } | 1537 } |
1538 | 1538 |
1539 } // namespace content | 1539 } // namespace content |
OLD | NEW |