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

Unified Diff: ios/chrome/browser/ui/autofill/cells/autofill_edit_item.mm

Issue 2893353002: [Payment Request] Address edit view controller (Part 2) (Closed)
Patch Set: Initial Created 3 years, 7 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
« no previous file with comments | « ios/chrome/browser/ui/autofill/cells/autofill_edit_item.h ('k') | ios/chrome/browser/ui/payments/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/chrome/browser/ui/autofill/cells/autofill_edit_item.mm
diff --git a/ios/chrome/browser/ui/autofill/cells/autofill_edit_item.mm b/ios/chrome/browser/ui/autofill/cells/autofill_edit_item.mm
index f4d9655e101bc4e1b423a04dadfb0c0e62c233b7..406a69eb4711ab1f13ca20146acf676a09765c07 100644
--- a/ios/chrome/browser/ui/autofill/cells/autofill_edit_item.mm
+++ b/ios/chrome/browser/ui/autofill/cells/autofill_edit_item.mm
@@ -29,6 +29,7 @@ const CGFloat kLabelAndFieldGap = 5;
@synthesize textFieldName = _textFieldName;
@synthesize textFieldValue = _textFieldValue;
@synthesize cardTypeIcon = _cardTypeIcon;
+@synthesize inputView = _inputView;
@synthesize textFieldEnabled = _textFieldEnabled;
@synthesize autofillUIType = _autofillUIType;
@synthesize required = _required;
@@ -60,6 +61,7 @@ const CGFloat kLabelAndFieldGap = 5;
[cell.textField addTarget:self
action:@selector(textFieldChanged:)
forControlEvents:UIControlEventEditingChanged];
+ cell.textField.inputView = self.inputView;
cell.cardTypeIconView.image = self.cardTypeIcon;
}
« no previous file with comments | « ios/chrome/browser/ui/autofill/cells/autofill_edit_item.h ('k') | ios/chrome/browser/ui/payments/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698