Chromium Code Reviews| Index: ios/chrome/browser/ui/content_suggestions/content_suggestion.mm |
| diff --git a/ios/chrome/browser/ui/content_suggestions/content_suggestion.mm b/ios/chrome/browser/ui/content_suggestions/content_suggestion.mm |
| index 0d25178ed478f608d6eb5eeff0d74e51e6db7aad..528a60decdf420468b1f46acc59c95940c28e200 100644 |
| --- a/ios/chrome/browser/ui/content_suggestions/content_suggestion.mm |
| +++ b/ios/chrome/browser/ui/content_suggestions/content_suggestion.mm |
| @@ -8,9 +8,17 @@ |
| #error "This file requires ARC support." |
| #endif |
| +@interface ContentSuggestion () |
| + |
|
stkhapugin
2017/02/16 10:53:27
Unless you add something here in a future CL, remo
gambard
2017/02/16 13:45:53
Done.
|
| +@end |
| + |
| @implementation ContentSuggestion |
| @synthesize title = _title; |
| @synthesize image = _image; |
| +@synthesize text = _text; |
| +@synthesize url = _url; |
| +@synthesize section = _section; |
| +@synthesize type = _type; |
| @end |