| 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_SUGGESTIONS_FAVICON_IT
EM_H_ | 5 #ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_FAVI
CON_ITEM_H_ |
| 6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_FAVICON_IT
EM_H_ | 6 #define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_FAVI
CON_ITEM_H_ |
| 7 | 7 |
| 8 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" | 8 #import "ios/chrome/browser/ui/collection_view/cells/collection_view_item.h" |
| 9 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" | 9 #import "ios/third_party/material_components_ios/src/components/CollectionCells/
src/MaterialCollectionCells.h" |
| 10 | 10 |
| 11 // Delegate for the ContentSuggestionsFaviconCell, handling the interaction with | 11 // Delegate for the ContentSuggestionsFaviconCell, handling the interaction with |
| 12 // the inner collection view. | 12 // the inner collection view. |
| 13 @protocol ContentSuggestionsFaviconCellDelegate | 13 @protocol ContentSuggestionsFaviconCellDelegate |
| 14 | 14 |
| 15 // Opens the favicon associated with the |indexPath| of the internal cell. | 15 // Opens the favicon associated with the |indexPath| of the internal cell. |
| 16 - (void)openFaviconAtIndexPath:(nonnull NSIndexPath*)innerIndexPath; | 16 - (void)openFaviconAtIndexPath:(nonnull NSIndexPath*)innerIndexPath; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 34 @interface ContentSuggestionsFaviconCell : MDCCollectionViewCell | 34 @interface ContentSuggestionsFaviconCell : MDCCollectionViewCell |
| 35 | 35 |
| 36 // The inner collection view, used to display the favicons. | 36 // The inner collection view, used to display the favicons. |
| 37 @property(nonatomic, strong, nullable) UICollectionView* collectionView; | 37 @property(nonatomic, strong, nullable) UICollectionView* collectionView; |
| 38 | 38 |
| 39 @property(nonatomic, weak, nullable) id<ContentSuggestionsFaviconCellDelegate> | 39 @property(nonatomic, weak, nullable) id<ContentSuggestionsFaviconCellDelegate> |
| 40 delegate; | 40 delegate; |
| 41 | 41 |
| 42 @end | 42 @end |
| 43 | 43 |
| 44 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CONTENT_SUGGESTIONS_FAVICON
_ITEM_H_ | 44 #endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_F
AVICON_ITEM_H_ |
| OLD | NEW |