| Index: components/ntp_snippets/physical_web_pages/physical_web_page_suggestions_provider.cc
|
| diff --git a/components/ntp_snippets/physical_web_pages/physical_web_page_suggestions_provider.cc b/components/ntp_snippets/physical_web_pages/physical_web_page_suggestions_provider.cc
|
| index c77fd77ae28bb5a5d454e4c3c472d1ba93dfe85f..a15acc5138b85843c742e7ac3a58c364c8f94213 100644
|
| --- a/components/ntp_snippets/physical_web_pages/physical_web_page_suggestions_provider.cc
|
| +++ b/components/ntp_snippets/physical_web_pages/physical_web_page_suggestions_provider.cc
|
| @@ -89,11 +89,11 @@ void PhysicalWebPageSuggestionsProvider::ClearCachedSuggestionsForDebugging(
|
| // Ignored
|
| }
|
|
|
| -std::vector<ContentSuggestion>
|
| -PhysicalWebPageSuggestionsProvider::GetDismissedSuggestionsForDebugging(
|
| - Category category) {
|
| +void PhysicalWebPageSuggestionsProvider::GetDismissedSuggestionsForDebugging(
|
| + Category category,
|
| + const DismissedSuggestionsCallback& callback) {
|
| // Not implemented.
|
| - return std::vector<ContentSuggestion>();
|
| + callback.Run(std::vector<ContentSuggestion>());
|
| }
|
|
|
| void PhysicalWebPageSuggestionsProvider::ClearDismissedSuggestionsForDebugging(
|
|
|