| 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 ed6415fcc82fe8cc8dbccc706dab7a15574f7115..7b11cb3823d304000318777ad52ce6a6f96fa295 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
|
| @@ -11,6 +11,7 @@
|
| #import "ios/chrome/browser/ui/content_suggestions/content_suggestions_expandable_item.h"
|
| #import "ios/chrome/browser/ui/content_suggestions/content_suggestions_favicon_item.h"
|
|
|
| +@class ContentSuggestion;
|
| @protocol ContentSuggestionsCommands;
|
| @protocol ContentSuggestionsDataSource;
|
| @protocol ContentSuggestionIdentification;
|
| @@ -39,6 +40,8 @@
|
| - (void)dismissEntryAtIndexPath:(NSIndexPath*)indexPath;
|
| // Removes the |section|.
|
| - (void)dismissSection:(NSInteger)section;
|
| +// Adds the |suggestions| to the collection and its model.
|
| +- (void)addSuggestions:(NSArray<ContentSuggestion*>*)suggestions;
|
|
|
| @end
|
|
|
|
|