Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: ios/chrome/browser/content_suggestions/content_suggestions_coordinator.mm

Issue 2644123003: Move ios/ui/suggestions to ios/ui/content_suggestions (Closed)
Patch Set: Rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 39c3f1010ce8f43fed2d58bc8b7d045dd7c247ae..0df1af28a4f22c989c334b1f7d501acc80fb752e 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;
}
@@ -32,8 +32,8 @@
_visible = YES;
- SuggestionsViewController* suggestionsViewController =
- [[SuggestionsViewController alloc]
+ ContentSuggestionsViewController* suggestionsViewController =
+ [[ContentSuggestionsViewController alloc]
initWithStyle:CollectionViewControllerStyleDefault];
suggestionsViewController.suggestionCommandHandler = self;
@@ -60,7 +60,7 @@
_visible = NO;
}
-#pragma mark - SuggestionsCommands
+#pragma mark - ContentSuggestionsCommands
- (void)openReadingList {
}

Powered by Google App Engine
This is Rietveld 408576698