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

Unified Diff: ios/chrome/browser/ui/bookmarks/bookmark_signin_promo_cell.h

Issue 2838373002: Adding Sign-in promo for bookmark view. (Closed)
Patch Set: Remove consumer and comments 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/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_

Powered by Google App Engine
This is Rietveld 408576698