Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Unified Diff: ios/chrome/browser/ui/content_suggestions/cells/content_suggestions_most_visited_tile.h

Issue 2803223002: Create a Most Visited tile for ContentSuggestions (Closed)
Patch Set: Address comment Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+
+// Creates a tile with a |title| and its favicon view configured with
+// |attributes|.
++ (nullable ContentSuggestionsMostVisitedTile*)
+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_

Powered by Google App Engine
This is Rietveld 408576698