Index: ios/chrome/browser/ui/history/favicon_view.h |
diff --git a/ios/chrome/browser/ui/history/favicon_view.h b/ios/chrome/browser/ui/history/favicon_view.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..09bd5c3be725cd3ac47291edb55f089fcde665ee |
--- /dev/null |
+++ b/ios/chrome/browser/ui/history/favicon_view.h |
@@ -0,0 +1,21 @@ |
+// Copyright 2016 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_HISTORY_FAVICON_VIEW_H_ |
+#define IOS_CHROME_BROWSER_UI_HISTORY_FAVICON_VIEW_H_ |
+ |
+#import <UIKit/UIKit.h> |
+ |
+@interface FaviconView : UIView |
+ |
+// Size for the favicon. |
+@property(nonatomic) CGFloat size; |
+// Image view for the favicon. |
+@property(nonatomic, retain) UIImageView* faviconImage; |
+// Label for fallback favicon placeholder. |
+@property(nonatomic, retain) UILabel* faviconFallbackLabel; |
+ |
+@end |
+ |
+#endif // IOS_CHROME_BROWSER_UI_HISTORY_FAVICON_VIEW_H_ |