Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(728)

Side by Side Diff: content/renderer/image_downloader/image_downloader_impl.cc

Issue 2034663003: Remove use of deprecated MessageLoop methods in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/location.h"
10 #include "base/logging.h" 11 #include "base/logging.h"
11 #include "base/message_loop/message_loop.h" 12 #include "base/single_thread_task_runner.h"
13 #include "base/threading/thread_task_runner_handle.h"
12 #include "content/child/image_decoder.h" 14 #include "content/child/image_decoder.h"
13 #include "content/public/renderer/render_frame.h" 15 #include "content/public/renderer/render_frame.h"
14 #include "content/public/renderer/render_thread.h" 16 #include "content/public/renderer/render_thread.h"
15 #include "content/renderer/fetchers/multi_resolution_image_resource_fetcher.h" 17 #include "content/renderer/fetchers/multi_resolution_image_resource_fetcher.h"
16 #include "mojo/common/url_type_converters.h" 18 #include "mojo/common/url_type_converters.h"
17 #include "net/base/data_url.h" 19 #include "net/base/data_url.h"
18 #include "skia/ext/image_operations.h" 20 #include "skia/ext/image_operations.h"
19 #include "third_party/WebKit/public/platform/WebURLRequest.h" 21 #include "third_party/WebKit/public/platform/WebURLRequest.h"
20 #include "third_party/WebKit/public/platform/WebVector.h" 22 #include "third_party/WebKit/public/platform/WebVector.h"
21 #include "third_party/WebKit/public/web/WebLocalFrame.h" 23 #include "third_party/WebKit/public/web/WebLocalFrame.h"
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 204
203 ReplyDownloadResult(fetcher->http_status_code(), result_images, 205 ReplyDownloadResult(fetcher->http_status_code(), result_images,
204 result_original_image_sizes, callback); 206 result_original_image_sizes, callback);
205 207
206 // Remove the image fetcher from our pending list. We're in the callback from 208 // Remove the image fetcher from our pending list. We're in the callback from
207 // MultiResolutionImageResourceFetcher, best to delay deletion. 209 // MultiResolutionImageResourceFetcher, best to delay deletion.
208 ImageResourceFetcherList::iterator iter = 210 ImageResourceFetcherList::iterator iter =
209 std::find(image_fetchers_.begin(), image_fetchers_.end(), fetcher); 211 std::find(image_fetchers_.begin(), image_fetchers_.end(), fetcher);
210 if (iter != image_fetchers_.end()) { 212 if (iter != image_fetchers_.end()) {
211 image_fetchers_.weak_erase(iter); 213 image_fetchers_.weak_erase(iter);
212 base::MessageLoop::current()->DeleteSoon(FROM_HERE, fetcher); 214 base::ThreadTaskRunnerHandle::Get()->DeleteSoon(FROM_HERE, fetcher);
213 } 215 }
214 } 216 }
215 217
216 void ImageDownloaderImpl::ReplyDownloadResult( 218 void ImageDownloaderImpl::ReplyDownloadResult(
217 int32_t http_status_code, 219 int32_t http_status_code,
218 const std::vector<SkBitmap>& result_images, 220 const std::vector<SkBitmap>& result_images,
219 const std::vector<gfx::Size>& result_original_image_sizes, 221 const std::vector<gfx::Size>& result_original_image_sizes,
220 const DownloadImageCallback& callback) { 222 const DownloadImageCallback& callback) {
221 callback.Run(http_status_code, mojo::Array<SkBitmap>::From(result_images), 223 callback.Run(http_status_code, mojo::Array<SkBitmap>::From(result_images),
222 result_original_image_sizes); 224 result_original_image_sizes);
223 } 225 }
224 226
225 } // namespace content 227 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/browser_plugin/browser_plugin.cc ('k') | content/renderer/media/html_video_element_capturer_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698