Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_H_ | 6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_H_ |
| 7 | 7 |
| 8 #import <UIKit/UIKit.h> | 8 #import <UIKit/UIKit.h> |
| 9 | 9 |
| 10 #import "ios/chrome/browser/ui/collection_view/collection_view_model.h" | |
| 11 #include "url/gurl.h" | |
| 12 | |
| 13 @class ContentSuggestionsImageUpdater; | |
| 14 @class ContentSuggestionsSectionInformation; | |
| 15 | |
| 16 // Enum defining the ItemType of this ContentSuggestionsCollectionUpdater. | |
| 17 typedef NS_ENUM(NSInteger, ContentSuggestionsItemType) { | |
| 18 ContentSuggestionsItemTypeText = kItemTypeEnumZero, | |
| 19 ContentSuggestionsItemTypeArticle, | |
| 20 ContentSuggestionsItemTypeExpand, | |
| 21 ContentSuggestionsItemTypeStack, | |
| 22 ContentSuggestionsItemTypeFavicon, | |
| 23 }; | |
| 24 | |
| 10 // Data for a suggestions item, compatible with Objective-C. | 25 // Data for a suggestions item, compatible with Objective-C. |
| 11 @interface ContentSuggestion : NSObject | 26 @interface ContentSuggestion : NSObject |
| 12 | 27 |
| 13 @property(nonatomic, copy) NSString* title; | 28 @property(nonatomic, copy) NSString* title; |
| 14 @property(nonatomic, strong) UIImage* image; | 29 @property(nonatomic, strong) UIImage* image; |
| 30 @property(nonatomic, copy) NSString* text; | |
|
lpromero
2017/02/14 10:52:27
Please add comments, as this is becoming a larger
gambard
2017/02/14 14:03:42
Done.
| |
| 31 @property(nonatomic, assign) GURL url; | |
| 32 | |
| 33 @property(nonatomic, strong) ContentSuggestionsSectionInformation* section; | |
| 34 @property(nonatomic, assign) ContentSuggestionsItemType type; | |
|
lpromero
2017/02/14 10:52:27
I am not a fan of how the collection view world ge
gambard
2017/02/14 14:03:42
Not sure I understand. Can you clarify?
I am using
lpromero
2017/02/14 15:43:32
I know it helps with compiler, but it makes this m
gambard
2017/02/15 10:17:56
Done.
| |
| 35 | |
| 36 @property(nonatomic, strong) ContentSuggestionsImageUpdater* imageUpdater; | |
|
lpromero
2017/02/14 10:52:27
Please add a comment for how it is used in the con
gambard
2017/02/14 14:03:42
Done.
| |
| 15 | 37 |
| 16 @end | 38 @end |
| 17 | 39 |
| 18 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_H_ | 40 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTION_H_ |
| OLD | NEW |