Chromium Code Reviews| Index: ios/chrome/browser/ui/collection_view/cells/collection_view_text_item.h |
| diff --git a/ios/chrome/browser/ui/collection_view/cells/collection_view_text_item.h b/ios/chrome/browser/ui/collection_view/cells/collection_view_text_item.h |
| index 5068336545851cce43e554e15c69cf63ebb270e0..6fec03ea187d80eedc433afaa6919a91770b4008 100644 |
| --- a/ios/chrome/browser/ui/collection_view/cells/collection_view_text_item.h |
| +++ b/ios/chrome/browser/ui/collection_view/cells/collection_view_text_item.h |
| @@ -25,6 +25,18 @@ |
| // The image to show. |
| @property(nonatomic, strong) UIImage* image; |
| +// The font of the main text. |
|
lpromero
2017/01/13 10:13:26
Add to these comments which default value is used.
Moe
2017/01/13 15:28:19
Done.
|
| +@property(nonatomic, copy) UIFont* textFont; |
|
lpromero
2017/01/13 10:13:26
Also add the null_resettable attribute if you impl
Moe
2017/01/13 15:28:19
Done. Adding null_resettable to these properties r
|
| + |
| +// The color of the main text. |
| +@property(nonatomic, copy) UIColor* textColor; |
| + |
| +// The font of the secondary text. |
| +@property(nonatomic, copy) UIFont* detailTextFont; |
| + |
| +// The color of the secondary text. |
| +@property(nonatomic, copy) UIColor* detailTextColor; |
| + |
| @end |
| #endif // IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_ITEM_H_ |