| Index: ios/chrome/browser/ui/content_suggestions/content_suggestions_section_information.h
|
| diff --git a/ios/chrome/browser/ui/content_suggestions/content_suggestions_section_information.h b/ios/chrome/browser/ui/content_suggestions/content_suggestions_section_information.h
|
| index 92545c166d28a3203e860b8cff8e9d7457c6f312..526efc34837747a859ed20ce2608c481e42f0d50 100644
|
| --- a/ios/chrome/browser/ui/content_suggestions/content_suggestions_section_information.h
|
| +++ b/ios/chrome/browser/ui/content_suggestions/content_suggestions_section_information.h
|
| @@ -34,20 +34,18 @@ typedef NS_ENUM(NSInteger, ContentSuggestionsSectionID) {
|
| @interface ContentSuggestionsSectionInformation : NSObject
|
|
|
| - (instancetype)initWithID:(ContentSuggestionsSectionID)ID
|
| - emptyCell:(CollectionViewItem*)emptyCell
|
| - layout:(ContentSuggestionsSectionLayout)layout
|
| - title:(NSString*)title NS_DESIGNATED_INITIALIZER;
|
| + NS_DESIGNATED_INITIALIZER;
|
| - (instancetype)init NS_UNAVAILABLE;
|
|
|
| // Item to display when the section is empty. If nil the section should not be
|
| // displayed when empty.
|
| -@property(nonatomic, strong, readonly) CollectionViewItem* emptyCell;
|
| +@property(nonatomic, strong) CollectionViewItem* emptyCell;
|
| // Layout to display the content of the section.
|
| -@property(nonatomic, assign, readonly) ContentSuggestionsSectionLayout layout;
|
| +@property(nonatomic, assign) ContentSuggestionsSectionLayout layout;
|
| // ID of the section. Used for ordering.
|
| @property(nonatomic, assign, readonly) ContentSuggestionsSectionID ID;
|
| // Title for the section.
|
| -@property(nonatomic, copy, readonly) NSString* title;
|
| +@property(nonatomic, copy) NSString* title;
|
|
|
| @end
|
|
|
|
|