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..14ec5aa0184ddce05918ef779e371c4f694f0807 |
| --- /dev/null |
| +++ b/ios/chrome/browser/ui/bookmarks/bookmark_signin_promo_cell.h |
| @@ -0,0 +1,24 @@ |
| +// 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; |
| + |
| +// Sign-in promo cell based on SigninPromoView. This cell invite the user to |
|
msarda
2017/04/27 11:58:24
s/invite/invites
jlebel
2017/04/27 14:01:28
Done.
|
| +// login without typing their password (based on "CONTINUE AS"). |
|
msarda
2017/04/27 11:58:24
Remove "(based on "CONTINUE AS")" (I do not unders
jlebel
2017/04/27 14:01:28
Done.
|
| +@interface BookmarkSigninPromoCell : UICollectionViewCell |
| + |
| +// Identifier for -[UICollectionView registerClass:forCellWithReuseIdentifier:]. |
| ++ (NSString*)reuseIdentifier; |
| + |
| +// SigninPromoView view. |
|
msarda
2017/04/27 11:58:24
This comment is useless (it is the same as the nam
jlebel
2017/04/27 14:01:28
Done.
lpromero
2017/04/27 15:49:11
Maybe: The sign-in promo view embedded in this cel
|
| +@property(nonatomic, readonly) SigninPromoView* signinPromoView; |
| + |
| +@end |
| + |
| +#endif // IOS_CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_SIGNIN_PROMO_CELL_H_ |