| Index: ios/chrome/browser/ui/content_suggestions/content_suggestion.h
|
| diff --git a/ios/chrome/browser/ui/content_suggestions/content_suggestion.h b/ios/chrome/browser/ui/content_suggestions/content_suggestion.h
|
| index 518958ebb084dc25e7ce657e14de5cb39a1d9c59..7a13b0a5e0d9e32b0df76d4b186195633d6ef56f 100644
|
| --- a/ios/chrome/browser/ui/content_suggestions/content_suggestion.h
|
| +++ b/ios/chrome/browser/ui/content_suggestions/content_suggestion.h
|
| @@ -9,6 +9,10 @@
|
|
|
| #include "url/gurl.h"
|
|
|
| +namespace base {
|
| +class Time;
|
| +}
|
| +
|
| @class ContentSuggestionsSectionInformation;
|
|
|
| // Enum defining the type of a ContentSuggestions.
|
| @@ -28,6 +32,10 @@ typedef NS_ENUM(NSInteger, ContentSuggestionType) {
|
| @property(nonatomic, strong, nullable) UIImage* image;
|
| // URL associated with the suggestion.
|
| @property(nonatomic, assign) GURL url;
|
| +// The name of the publisher.
|
| +@property(nonatomic, copy, nullable) NSString* publisher;
|
| +// The date of publication.
|
| +@property(nonatomic, assign) base::Time publishDate;
|
|
|
| // Section information in which this suggestion should be.
|
| @property(nonatomic, strong, nullable)
|
|
|