| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_CELL_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_CELL_H_ |
| 7 |
| 8 #import <UIKit/UIKit.h> |
| 9 |
| 10 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MDCCollectionViewCell.h" |
| 11 |
| 12 // MDCCollectionViewCell that displays two text fields. |
| 13 @interface CollectionViewTextCell : MDCCollectionViewCell |
| 14 |
| 15 // The first line of text to display. |
| 16 @property(nonatomic, readonly, strong, nullable) UILabel* textLabel; |
| 17 |
| 18 // The second line of detail text to display. |
| 19 @property(nonatomic, readonly, strong, nullable) UILabel* detailTextLabel; |
| 20 |
| 21 @end |
| 22 |
| 23 #endif // IOS_CHROME_BROWSER_UI_COLLECTION_VIEW_CELLS_COLLECTION_VIEW_TEXT_CELL
_H_ |
| OLD | NEW |