Chromium Code Reviews| Index: ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_tile.h |
| diff --git a/ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_tile.h b/ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_tile.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..478245dfc77fac3af2428ea529c6959c9293c1ff |
| --- /dev/null |
| +++ b/ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_tile.h |
| @@ -0,0 +1,33 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_MOST_VISITED_TILE_H_ |
| +#define IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_MOST_VISITED_TILE_H_ |
| + |
| +#import <UIKit/UIKit.h> |
| + |
| +@class FaviconAttributes; |
| +@class FaviconViewNew; |
| + |
| +// View used to display a Most Visited tile. |
| +@interface ContentSuggestionsMostVisitedTile : UIView |
| + |
| +// Width of a Most Visited tile. |
| ++ (CGFloat)width; |
|
lpromero
2017/04/07 15:16:12
Is this still needed in the public interface? If n
gambard
2017/04/10 11:01:37
It is needed to determine how many tiles you can p
|
| + |
| +// Creates a tile with a |title| and its favicon view configured with |
| +// |attributes|. |
| ++ (nullable ContentSuggestionsMostVisitedTile*) |
|
lpromero
2017/04/07 15:16:12
Idem this can't fail.
gambard
2017/04/10 11:01:37
Same, it is using the return value of a nullable i
|
| +tileWithTitle:(nullable NSString*)title |
| + attributes:(nullable FaviconAttributes*)attributes; |
| + |
| +// FaviconView displaying the favicon. |
| +@property(nonatomic, strong, readonly, nonnull) FaviconViewNew* faviconView; |
| + |
| +// Sets the text and the accessibility label of this view. |
| +- (void)setTitle:(nullable NSString*)title; |
| + |
| +@end |
| + |
| +#endif // IOS_CHROME_BROWSER_UI_CONTENT_SUGGESTIONS_CELLS_CONTENT_SUGGESTIONS_MOST_VISITED_TILE_H_ |