| Index: chrome/browser/ui/views/payments/contact_info_editor_view_controller.cc
|
| diff --git a/chrome/browser/ui/views/payments/contact_info_editor_view_controller.cc b/chrome/browser/ui/views/payments/contact_info_editor_view_controller.cc
|
| index 8a08f9a4c65645ddf290cc0367538ef3a9aec0ba..397467806692d379f4a15c6ce1c355f1bdc4982c 100644
|
| --- a/chrome/browser/ui/views/payments/contact_info_editor_view_controller.cc
|
| +++ b/chrome/browser/ui/views/payments/contact_info_editor_view_controller.cc
|
| @@ -158,7 +158,10 @@ bool ContactInfoEditorViewController::ContactInfoValidationDelegate::
|
| }
|
|
|
| bool ContactInfoEditorViewController::ContactInfoValidationDelegate::
|
| - TextfieldValueChanged(views::Textfield* textfield) {
|
| + TextfieldValueChanged(views::Textfield* textfield, bool was_blurred) {
|
| + if (!was_blurred)
|
| + return true;
|
| +
|
| base::string16 error_message;
|
| bool is_valid = ValidateTextfield(textfield, &error_message);
|
| controller_->DisplayErrorMessageForField(field_.type, error_message);
|
|
|