| Index: components/ntp_snippets/reading_list/reading_list_suggestions_provider.cc
|
| diff --git a/components/ntp_snippets/reading_list/reading_list_suggestions_provider.cc b/components/ntp_snippets/reading_list/reading_list_suggestions_provider.cc
|
| index 4f648debdba86e2edbfcd431114dd58fe731f96c..223257baf68b02284c7f859a6ecfbcec3e017ad0 100644
|
| --- a/components/ntp_snippets/reading_list/reading_list_suggestions_provider.cc
|
| +++ b/components/ntp_snippets/reading_list/reading_list_suggestions_provider.cc
|
| @@ -18,6 +18,7 @@
|
| #include "components/strings/grit/components_strings.h"
|
| #include "components/url_formatter/url_formatter.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| +#include "ui/gfx/image/image.h"
|
|
|
| namespace ntp_snippets {
|
|
|
| @@ -75,7 +76,8 @@ void ReadingListSuggestionsProvider::DismissSuggestion(
|
| void ReadingListSuggestionsProvider::FetchSuggestionImage(
|
| const ContentSuggestion::ID& suggestion_id,
|
| const ImageFetchedCallback& callback) {
|
| - // TODO(crbug.com/702241): Implement this method.
|
| + base::ThreadTaskRunnerHandle::Get()->PostTask(
|
| + FROM_HERE, base::Bind(callback, gfx::Image()));
|
| }
|
|
|
| void ReadingListSuggestionsProvider::Fetch(
|
|
|