Index: components/ntp_snippets/content_suggestions_service.cc |
diff --git a/components/ntp_snippets/content_suggestions_service.cc b/components/ntp_snippets/content_suggestions_service.cc |
index 1da49f5cfd53dda8781c150fa113ec6be6c49cc9..1072b9c449893070ce83f0fb1ccc044039c34c0e 100644 |
--- a/components/ntp_snippets/content_suggestions_service.cc |
+++ b/components/ntp_snippets/content_suggestions_service.cc |
@@ -66,7 +66,7 @@ void ContentSuggestionsService::FetchSuggestionImage( |
if (!id_category_map_.count(suggestion_id)) { |
LOG(WARNING) << "Requested image for unknown suggestion " << suggestion_id; |
base::ThreadTaskRunnerHandle::Get()->PostTask( |
- FROM_HERE, base::Bind(callback, suggestion_id, gfx::Image())); |
+ FROM_HERE, base::Bind(callback, gfx::Image())); |
return; |
} |
Category category = id_category_map_.at(suggestion_id); |
@@ -74,7 +74,7 @@ void ContentSuggestionsService::FetchSuggestionImage( |
LOG(WARNING) << "Requested image for suggestion " << suggestion_id |
<< " for unavailable category " << category; |
base::ThreadTaskRunnerHandle::Get()->PostTask( |
- FROM_HERE, base::Bind(callback, suggestion_id, gfx::Image())); |
+ FROM_HERE, base::Bind(callback, gfx::Image())); |
return; |
} |
providers_by_category_[category]->FetchSuggestionImage(suggestion_id, |