Chromium Code Reviews| Index: ios/chrome/browser/ui/bookmarks/bookmark_signin_promo_cell.h |
| diff --git a/ios/chrome/browser/ui/bookmarks/bookmark_signin_promo_cell.h b/ios/chrome/browser/ui/bookmarks/bookmark_signin_promo_cell.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3e5f8d6795c33b15fe18d6103c87ec80ffab7178 |
| --- /dev/null |
| +++ b/ios/chrome/browser/ui/bookmarks/bookmark_signin_promo_cell.h |
| @@ -0,0 +1,20 @@ |
| +// 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_BOOKMARKS_BOOKMARK_SIGNIN_PROMO_CELL_H_ |
| +#define IOS_CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_SIGNIN_PROMO_CELL_H_ |
| + |
| +#import <UIKit/UIKit.h> |
| + |
| +@class SigninPromoView; |
| + |
| +@interface BookmarkSigninPromoCell : UICollectionViewCell |
|
lpromero
2017/04/26 19:03:51
Comments everywhere.
jlebel
2017/04/27 09:54:54
Done.
|
| + |
| ++ (NSString*)reuseIdentifier; |
| + |
| +@property(nonatomic, readonly) SigninPromoView* signinPromoView; |
| + |
| +@end |
| + |
| +#endif // IOS_CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_SIGNIN_PROMO_CELL_H_ |