| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_READING_LIST_READING_LIST_COLLECTION_VIEW_ITEM_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_READING_LIST_READING_LIST_COLLECTION_VIEW_ITEM_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_READING_LIST_READING_LIST_COLLECTION_VIEW_ITEM_H_ | 6 #define IOS_CHROME_BROWSER_UI_READING_LIST_READING_LIST_COLLECTION_VIEW_ITEM_H_ |
| 7 | 7 |
| 8 #import "components/reading_list/ios/reading_list_entry.h" | 8 #import "components/reading_list/core/reading_list_entry.h" |
| 9 #import "ios/chrome/browser/favicon/favicon_attributes_provider.h" | 9 #import "ios/chrome/browser/favicon/favicon_attributes_provider.h" |
| 10 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_text_item.h
" | 10 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_text_item.h
" |
| 11 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" | 11 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" |
| 12 | 12 |
| 13 class GURL; | 13 class GURL; |
| 14 @protocol ReadingListCollectionViewItemAccessibilityDelegate; | 14 @protocol ReadingListCollectionViewItemAccessibilityDelegate; |
| 15 | 15 |
| 16 // Collection view item for representing a ReadingListEntry. | 16 // Collection view item for representing a ReadingListEntry. |
| 17 @interface ReadingListCollectionViewItem : CollectionViewItem | 17 @interface ReadingListCollectionViewItem : CollectionViewItem |
| 18 | 18 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 // Title label. | 52 // Title label. |
| 53 @property(nonatomic, readonly, strong) UILabel* textLabel; | 53 @property(nonatomic, readonly, strong) UILabel* textLabel; |
| 54 // Detail label. | 54 // Detail label. |
| 55 @property(nonatomic, readonly, strong) UILabel* detailTextLabel; | 55 @property(nonatomic, readonly, strong) UILabel* detailTextLabel; |
| 56 // View for displaying the favicon for the reading list entry. | 56 // View for displaying the favicon for the reading list entry. |
| 57 @property(nonatomic, readonly, strong) FaviconViewNew* faviconView; | 57 @property(nonatomic, readonly, strong) FaviconViewNew* faviconView; |
| 58 | 58 |
| 59 @end | 59 @end |
| 60 | 60 |
| 61 #endif // IOS_CHROME_BROWSER_UI_READING_LIST_READING_LIST_COLLECTION_VIEW_ITEM_
H_ | 61 #endif // IOS_CHROME_BROWSER_UI_READING_LIST_READING_LIST_COLLECTION_VIEW_ITEM_
H_ |
| OLD | NEW |