Chromium Code Reviews| Index: chrome/browser/ui/views/autofill/autofill_dialog_views.cc |
| diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc |
| index 32dff53c14c4840ad145f0b026ff0686ee765b7a..16f168dc38254251021c92297dc0b02c7a68073e 100644 |
| --- a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc |
| +++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc |
| @@ -1144,6 +1144,13 @@ void AutofillDialogViews::SetTextContentsOfInput(const DetailInput& input, |
| NOTREACHED(); |
| } |
| +void AutofillDialogViews::SetTextContentsOfSuggestionInput( |
| + DialogSection section, |
| + const base::string16& text) { |
| + GroupForSection(section)->suggested_info->decorated_textfield()-> |
| + textfield()->SetText(text); |
|
Evan Stade
2013/06/20 21:56:24
(this will have a minor conflict with a recent pat
|
| +} |
| + |
| void AutofillDialogViews::ActivateInput(const DetailInput& input) { |
| TextfieldEditedOrActivated(TextfieldForInput(input), false); |
| } |