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/npapi/webplugin_impl.h" | 5 #include "webkit/plugins/npapi/webplugin_impl.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/memory/linked_ptr.h" | 9 #include "base/memory/linked_ptr.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
| 11 #include "base/string_util.h" |
11 #include "base/stringprintf.h" | 12 #include "base/stringprintf.h" |
12 #include "base/string_util.h" | |
13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
14 #include "cc/io_surface_layer.h" | 14 #include "cc/layers/io_surface_layer.h" |
15 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
16 #include "googleurl/src/url_util.h" | 16 #include "googleurl/src/url_util.h" |
17 #include "net/base/escape.h" | 17 #include "net/base/escape.h" |
18 #include "net/base/net_errors.h" | 18 #include "net/base/net_errors.h" |
19 #include "net/http/http_response_headers.h" | 19 #include "net/http/http_response_headers.h" |
20 #include "skia/ext/platform_canvas.h" | 20 #include "skia/ext/platform_canvas.h" |
21 #include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h" | 21 #include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h" |
22 #include "third_party/WebKit/Source/Platform/chromium/public/WebCookieJar.h" | 22 #include "third_party/WebKit/Source/Platform/chromium/public/WebCookieJar.h" |
23 #include "third_party/WebKit/Source/Platform/chromium/public/WebData.h" | 23 #include "third_party/WebKit/Source/Platform/chromium/public/WebData.h" |
24 #include "third_party/WebKit/Source/Platform/chromium/public/WebHTTPBody.h" | 24 #include "third_party/WebKit/Source/Platform/chromium/public/WebHTTPBody.h" |
(...skipping 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1368 webframe_->setReferrerForRequest(*request, plugin_url_); | 1368 webframe_->setReferrerForRequest(*request, plugin_url_); |
1369 break; | 1369 break; |
1370 | 1370 |
1371 default: | 1371 default: |
1372 break; | 1372 break; |
1373 } | 1373 } |
1374 } | 1374 } |
1375 | 1375 |
1376 } // namespace npapi | 1376 } // namespace npapi |
1377 } // namespace webkit | 1377 } // namespace webkit |
OLD | NEW |