| Index: components/ntp_snippets/offline_pages/offline_page_suggestions_provider.cc
|
| diff --git a/components/ntp_snippets/offline_pages/offline_page_suggestions_provider.cc b/components/ntp_snippets/offline_pages/offline_page_suggestions_provider.cc
|
| index 2cc197268d71c0297a2ae0743e65fef4d84b5d1d..1220ab09b2d9f929df5f394ef7b678fee9732bd9 100644
|
| --- a/components/ntp_snippets/offline_pages/offline_page_suggestions_provider.cc
|
| +++ b/components/ntp_snippets/offline_pages/offline_page_suggestions_provider.cc
|
| @@ -128,7 +128,7 @@ void OfflinePageSuggestionsProvider::OnOfflinePagesLoaded(
|
| break;
|
| }
|
|
|
| - observer_->OnNewSuggestions(provided_category_, std::move(suggestions));
|
| + observer_->OnNewSuggestions(this, provided_category_, std::move(suggestions));
|
| }
|
|
|
| void OfflinePageSuggestionsProvider::NotifyStatusChanged(
|
| @@ -139,7 +139,7 @@ void OfflinePageSuggestionsProvider::NotifyStatusChanged(
|
|
|
| if (!observer_)
|
| return;
|
| - observer_->OnCategoryStatusChanged(provided_category_, new_status);
|
| + observer_->OnCategoryStatusChanged(this, provided_category_, new_status);
|
| }
|
|
|
| } // namespace ntp_snippets
|
|
|