OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/image_downloader/image_downloader_impl.h" | 5 #include "content/renderer/image_downloader/image_downloader_impl.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
12 #include "content/child/image_decoder.h" | 12 #include "content/child/image_decoder.h" |
13 #include "content/public/renderer/render_frame.h" | 13 #include "content/public/renderer/render_frame.h" |
14 #include "content/public/renderer/render_thread.h" | 14 #include "content/public/renderer/render_thread.h" |
15 #include "content/renderer/fetchers/multi_resolution_image_resource_fetcher.h" | 15 #include "content/renderer/fetchers/multi_resolution_image_resource_fetcher.h" |
16 #include "mojo/common/url_type_converters.h" | 16 #include "mojo/common/url_type_converters.h" |
17 #include "net/base/data_url.h" | 17 #include "net/base/data_url.h" |
18 #include "skia/ext/image_operations.h" | 18 #include "skia/ext/image_operations.h" |
19 #include "skia/public/type_converters.h" | 19 #include "skia/public/type_converters.h" |
20 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 20 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
21 #include "third_party/WebKit/public/platform/WebVector.h" | 21 #include "third_party/WebKit/public/platform/WebVector.h" |
22 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 22 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
23 #include "third_party/WebKit/public/web/WebView.h" | 23 #include "third_party/WebKit/public/web/WebView.h" |
24 #include "ui/gfx/favicon_size.h" | 24 #include "ui/gfx/favicon_size.h" |
25 #include "ui/gfx/geometry/mojo/geometry_type_converters.h" | |
26 #include "ui/gfx/geometry/size.h" | 25 #include "ui/gfx/geometry/size.h" |
27 #include "ui/gfx/skbitmap_operations.h" | 26 #include "ui/gfx/skbitmap_operations.h" |
28 #include "url/url_constants.h" | 27 #include "url/url_constants.h" |
29 | 28 |
30 using blink::WebCachePolicy; | 29 using blink::WebCachePolicy; |
31 using blink::WebFrame; | 30 using blink::WebFrame; |
32 using blink::WebVector; | 31 using blink::WebVector; |
33 using blink::WebURL; | 32 using blink::WebURL; |
34 using blink::WebURLRequest; | 33 using blink::WebURLRequest; |
35 | 34 |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 } | 214 } |
216 } | 215 } |
217 | 216 |
218 void ImageDownloaderImpl::ReplyDownloadResult( | 217 void ImageDownloaderImpl::ReplyDownloadResult( |
219 int32_t http_status_code, | 218 int32_t http_status_code, |
220 const std::vector<SkBitmap>& result_images, | 219 const std::vector<SkBitmap>& result_images, |
221 const std::vector<gfx::Size>& result_original_image_sizes, | 220 const std::vector<gfx::Size>& result_original_image_sizes, |
222 const DownloadImageCallback& callback) { | 221 const DownloadImageCallback& callback) { |
223 callback.Run(http_status_code, | 222 callback.Run(http_status_code, |
224 mojo::Array<skia::mojom::BitmapPtr>::From(result_images), | 223 mojo::Array<skia::mojom::BitmapPtr>::From(result_images), |
225 mojo::Array<mojo::SizePtr>::From(result_original_image_sizes)); | 224 result_original_image_sizes); |
226 } | 225 } |
227 | 226 |
228 } // namespace content | 227 } // namespace content |
OLD | NEW |