| 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;
|
| }
|
|
|
|
|