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

Unified Diff: content/renderer/image_downloader/image_downloader_base.cc

Issue 2691393002: Fix auto raw pointer deduction on linux (Closed)
Patch Set: rebase Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/url_schemes.cc ('k') | content/renderer/presentation/presentation_dispatcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/image_downloader/image_downloader_base.cc
diff --git a/content/renderer/image_downloader/image_downloader_base.cc b/content/renderer/image_downloader/image_downloader_base.cc
index e1aa9f59f65d681fdbb84e5aeb32b9e739aa3a69..fffdeb3e724cb1591ebe08126399da537f2bc8dc 100644
--- a/content/renderer/image_downloader/image_downloader_base.cc
+++ b/content/renderer/image_downloader/image_downloader_base.cc
@@ -123,7 +123,7 @@ void ImageDownloaderBase::DidFetchImage(
}
void ImageDownloaderBase::OnDestruct() {
- for (auto fetchers : image_fetchers_) {
+ for (auto* fetchers : image_fetchers_) {
// Will run callbacks with an empty image vector.
fetchers->OnRenderFrameDestruct();
}
« no previous file with comments | « content/common/url_schemes.cc ('k') | content/renderer/presentation/presentation_dispatcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698