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

Unified Diff: ios/chrome/browser/payments/cells/autofill_profile_item.mm

Issue 2814793003: Adds accessoryType property to CollectionViewItem (Closed)
Patch Set: 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/payments/cells/autofill_profile_item.mm
diff --git a/ios/chrome/browser/payments/cells/autofill_profile_item.mm b/ios/chrome/browser/payments/cells/autofill_profile_item.mm
index 4e82bfaa24359e8c6ac09c4eb4b73c495b98ed54..bae91ae85f77717af05238d1c39efd9a6a012123 100644
--- a/ios/chrome/browser/payments/cells/autofill_profile_item.mm
+++ b/ios/chrome/browser/payments/cells/autofill_profile_item.mm
@@ -30,7 +30,6 @@ const CGFloat kVerticalSpacingBetweenLabels = 8;
@synthesize phoneNumber = _phoneNumber;
@synthesize email = _email;
@synthesize notification = _notification;
-@synthesize accessoryType = _accessoryType;
#pragma mark CollectionViewItem
@@ -44,7 +43,6 @@ const CGFloat kVerticalSpacingBetweenLabels = 8;
- (void)configureCell:(AutofillProfileCell*)cell {
[super configureCell:cell];
- cell.accessoryType = self.accessoryType;
cell.nameLabel.text = self.name;
cell.addressLabel.text = self.address;
cell.phoneNumberLabel.text = self.phoneNumber;
@@ -181,7 +179,6 @@ const CGFloat kVerticalSpacingBetweenLabels = 8;
self.phoneNumberLabel.text = nil;
self.emailLabel.text = nil;
self.notificationLabel.text = nil;
- self.accessoryType = MDCCollectionViewCellAccessoryNone;
}
#pragma mark - NSObject(Accessibility)
« no previous file with comments | « ios/chrome/browser/payments/cells/autofill_profile_item.h ('k') | ios/chrome/browser/payments/cells/payment_method_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698