Chromium Code Reviews| Index: ios/chrome/browser/ui/content_suggestions/content_suggestions_view_controller.h |
| diff --git a/ios/chrome/browser/ui/content_suggestions/content_suggestions_view_controller.h b/ios/chrome/browser/ui/content_suggestions/content_suggestions_view_controller.h |
| index df6a46da1ea2629a8e0c0c3d20d2221b32d44e63..a96e410759284850162ab76d5430f0ac37bd5a47 100644 |
| --- a/ios/chrome/browser/ui/content_suggestions/content_suggestions_view_controller.h |
| +++ b/ios/chrome/browser/ui/content_suggestions/content_suggestions_view_controller.h |
| @@ -12,12 +12,19 @@ |
| #import "ios/chrome/browser/ui/content_suggestions/content_suggestions_favicon_item.h" |
| @protocol ContentSuggestionsCommands; |
| +@protocol ContentSuggestionsDataSource; |
| // CollectionViewController to display the suggestions items. |
| @interface ContentSuggestionsViewController |
| : CollectionViewController<ContentSuggestionsExpandableCellDelegate, |
| ContentSuggestionsFaviconCellDelegate> |
| +- (instancetype)initWithStyle:(CollectionViewControllerStyle)style |
| + dataSource:(id<ContentSuggestionsDataSource>)dataSource |
| + NS_DESIGNATED_INITIALIZER; |
|
marq (ping after 24h)
2017/01/27 12:44:56
nit: newline.
gambard
2017/01/30 15:19:17
Done.
|
| +- (instancetype)initWithStyle:(CollectionViewControllerStyle)style |
| + NS_UNAVAILABLE; |
| + |
| // Handler for the commands sent by the ContentSuggestionsViewController. |
| @property(nonatomic, weak) id<ContentSuggestionsCommands> |
| suggestionCommandHandler; |