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

Unified Diff: ios/chrome/browser/payments/cells/payment_method_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/payment_method_item.mm
diff --git a/ios/chrome/browser/payments/cells/payment_method_item.mm b/ios/chrome/browser/payments/cells/payment_method_item.mm
index f39b537036653f71f242be9834f8ffd4b59f4173..fa741e2df29aca792c7af7d27b265c98d9e482f4 100644
--- a/ios/chrome/browser/payments/cells/payment_method_item.mm
+++ b/ios/chrome/browser/payments/cells/payment_method_item.mm
@@ -31,7 +31,6 @@ const CGFloat kHorizontalPadding = 16;
@synthesize notification = _notification;
@synthesize methodTypeIcon = _methodTypeIcon;
@synthesize reserveRoomForAccessoryType = _reserveRoomForAccessoryType;
-@synthesize accessoryType = _accessoryType;
#pragma mark CollectionViewItem
@@ -51,7 +50,6 @@ const CGFloat kHorizontalPadding = 16;
cell.notificationLabel.text = self.notification;
cell.methodTypeIconView.image = self.methodTypeIcon;
cell.reserveRoomForAccessoryType = self.reserveRoomForAccessoryType;
- cell.accessoryType = self.accessoryType;
}
@end
@@ -192,7 +190,6 @@ const CGFloat kHorizontalPadding = 16;
self.methodAddressLabel.text = nil;
self.notificationLabel.text = nil;
self.methodTypeIconView.image = nil;
- self.accessoryType = MDCCollectionViewCellAccessoryNone;
}
#pragma mark - Accessibility

Powered by Google App Engine
This is Rietveld 408576698