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 6a41aacc32fbab7f3ceb6cefddeabb6d46ea9abc..138e47101903b9b20082f60e690f233343ce8078 100644 |
--- a/ios/chrome/browser/content_suggestions/content_suggestions_coordinator.mm |
+++ b/ios/chrome/browser/content_suggestions/content_suggestions_coordinator.mm |
@@ -5,8 +5,8 @@ |
#import "ios/chrome/browser/content_suggestions/content_suggestions_coordinator.h" |
#include "base/mac/scoped_nsobject.h" |
-#import "ios/chrome/browser/ui/suggestions/suggestions_commands.h" |
-#import "ios/chrome/browser/ui/suggestions/suggestions_view_controller.h" |
+#import "ios/chrome/browser/ui/content_suggestions/content_suggestions_commands.h" |
+#import "ios/chrome/browser/ui/content_suggestions/content_suggestions_view_controller.h" |
#include "ios/chrome/grit/ios_strings.h" |
#include "ui/base/l10n/l10n_util.h" |
@@ -14,7 +14,7 @@ |
#error "This file requires ARC support." |
#endif |
-@interface ContentSuggestionsCoordinator ()<SuggestionsCommands> { |
+@interface ContentSuggestionsCoordinator ()<ContentSuggestionsCommands> { |
UINavigationController* _navigationController; |
} |
@@ -28,8 +28,8 @@ |
return; |
} |
- SuggestionsViewController* suggestionsViewController = |
- [[SuggestionsViewController alloc] |
+ ContentSuggestionsViewController* suggestionsViewController = |
+ [[ContentSuggestionsViewController alloc] |
initWithStyle:CollectionViewControllerStyleDefault]; |
suggestionsViewController.suggestionCommandHandler = self; |
@@ -55,7 +55,7 @@ |
_navigationController = nil; |
} |
-#pragma mark - SuggestionsCommands |
+#pragma mark - ContentSuggestionsCommands |
- (void)openReadingList { |
} |