Chromium Code Reviews| Index: chrome/renderer/autofill/autofill_agent.h |
| diff --git a/chrome/renderer/autofill/autofill_agent.h b/chrome/renderer/autofill/autofill_agent.h |
| index f7207c509511b915d7bde30a9dae142b68cb8775..557aa1d83ca763b6fb4e6357a5df47c1b2318d6f 100644 |
| --- a/chrome/renderer/autofill/autofill_agent.h |
| +++ b/chrome/renderer/autofill/autofill_agent.h |
| @@ -112,8 +112,12 @@ class AutofillAgent : public content::RenderViewObserver, |
| void OnAcceptPasswordAutofillSuggestion(const string16& value); |
| // For interactive autocomplete. |
| - void OnRequestAutocompleteFinished( |
| - WebKit::WebFormElement::AutocompleteResult result); |
| + void OnRequestAutocompleteSuccess(const FormData& form_data); |
| + void OnRequestAutocompleteError(); |
| + |
| + // Called when an interactive autocomplete request succeeds or fails. |
| + void FinishRequestAutocomplete( |
| + const WebKit::WebFormElement::AutocompleteResult& result); |
|
Ilya Sherman
2012/11/28 06:16:39
Hmm, I'm not seeing where this gets called. Is it
Dan Beam
2012/11/28 19:59:10
Nope, it's not any more.
|
| // Called in a posted task by textFieldDidChange() to work-around a WebKit bug |
| // http://bugs.webkit.org/show_bug.cgi?id=16976 |