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

Unified Diff: components/ntp_tiles/icon_cacher_impl.cc

Issue 2757643002: components/image_fetcher: Expose RequestMetadata from ImageFetcher (Closed)
Patch Set: logo_bridge Created 3 years, 9 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 | « components/ntp_tiles/icon_cacher_impl.h ('k') | components/ntp_tiles/icon_cacher_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/ntp_tiles/icon_cacher_impl.cc
diff --git a/components/ntp_tiles/icon_cacher_impl.cc b/components/ntp_tiles/icon_cacher_impl.cc
index c0ed25259248f29d7214e2ba1291d2623be48925..b0d65cfbc4b7499f28cad4075fb1aa3cd4057e3b 100644
--- a/components/ntp_tiles/icon_cacher_impl.cc
+++ b/components/ntp_tiles/icon_cacher_impl.cc
@@ -78,10 +78,12 @@ void IconCacherImpl::OnGetFaviconImageForPageURLFinished(
site, icon_available));
}
-void IconCacherImpl::OnFaviconDownloaded(PopularSites::Site site,
- const base::Closure& icon_available,
- const std::string& id,
- const gfx::Image& fetched_image) {
+void IconCacherImpl::OnFaviconDownloaded(
+ PopularSites::Site site,
+ const base::Closure& icon_available,
+ const std::string& id,
+ const gfx::Image& fetched_image,
+ const image_fetcher::RequestMetadata& metadata) {
if (fetched_image.IsEmpty()) {
return;
}
« no previous file with comments | « components/ntp_tiles/icon_cacher_impl.h ('k') | components/ntp_tiles/icon_cacher_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698