| Index: ios/chrome/browser/content_suggestions/content_suggestions_coordinator.mm
|
| diff --git a/ios/chrome/browser/content_suggestions/content_suggestions_coordinator.mm b/ios/chrome/browser/content_suggestions/content_suggestions_coordinator.mm
|
| index 6a311ec5b6c13b0c0a6d6323e3aadbff53c56de2..211080966f4b62aaa0f23b19f839762df90c991a 100644
|
| --- a/ios/chrome/browser/content_suggestions/content_suggestions_coordinator.mm
|
| +++ b/ios/chrome/browser/content_suggestions/content_suggestions_coordinator.mm
|
| @@ -10,10 +10,12 @@
|
| #include "base/strings/sys_string_conversions.h"
|
| #include "components/ntp_snippets/content_suggestions_service.h"
|
| #include "components/ntp_snippets/remote/remote_suggestions_scheduler.h"
|
| +#include "components/ntp_tiles/most_visited_sites.h"
|
| #include "components/reading_list/core/reading_list_model.h"
|
| #import "ios/chrome/browser/content_suggestions/content_suggestions_mediator.h"
|
| #include "ios/chrome/browser/favicon/ios_chrome_large_icon_service_factory.h"
|
| #include "ios/chrome/browser/ntp_snippets/ios_chrome_content_suggestions_service_factory.h"
|
| +#include "ios/chrome/browser/ntp_tiles/ios_most_visited_sites_factory.h"
|
| #include "ios/chrome/browser/reading_list/reading_list_model_factory.h"
|
| #import "ios/chrome/browser/ui/alert_coordinator/action_sheet_coordinator.h"
|
| #import "ios/chrome/browser/ui/commands/UIKit+ChromeExecuteCommand.h"
|
| @@ -78,7 +80,9 @@
|
| self.contentSuggestionsMediator = [[ContentSuggestionsMediator alloc]
|
| initWithContentService:contentSuggestionsService
|
| largeIconService:IOSChromeLargeIconServiceFactory::
|
| - GetForBrowserState(self.browserState)];
|
| + GetForBrowserState(self.browserState)
|
| + mostVisitedSite:IOSMostVisitedSitesFactory::NewForBrowserState(
|
| + self.browserState)];
|
| self.contentSuggestionsMediator.commandHandler = self;
|
|
|
| self.suggestionsViewController = [[ContentSuggestionsViewController alloc]
|
|
|