Chromium Code Reviews| Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
| index db0ef1073aeb0762c2bab5f090ec49d47f918635..fe77d742a3341c725eeee9386b873344e4a56fec 100644 |
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
| @@ -2154,6 +2154,11 @@ void AutofillDialogControllerImpl::DidSelectSuggestion(int identifier) { |
| // TODO(estade): implement. |
| } |
| +void AutofillDialogControllerImpl::DidSelectAutocompleteSuggestion( |
| + const base::string16& value) { |
| + // TODO: inline with DidSelectSuggestion() implementation. |
| +} |
| + |
| void AutofillDialogControllerImpl::DidAcceptSuggestion( |
| const base::string16& value, |
| int identifier) { |
| @@ -2233,6 +2238,10 @@ void AutofillDialogControllerImpl::ClearPreviewedForm() { |
| // TODO(estade): implement. |
| } |
| +void AutofillDialogControllerImpl::ClearAutocompletePreviewedField() { |
| + // TODO: inline with ClearPreviewedForm() implementation. |
|
Evan Stade
2014/01/27 17:43:17
TODOs need to have your name on them. That said, t
ziran.sun
2014/01/27 18:18:06
Done.
|
| +} |
| + |
| //////////////////////////////////////////////////////////////////////////////// |
| // content::NotificationObserver implementation. |