| Index: components/autofill/core/browser/autofill_driver.h
|
| diff --git a/components/autofill/core/browser/autofill_driver.h b/components/autofill/core/browser/autofill_driver.h
|
| index b599c4d7c4f562a3a96a865c60ba2d6283144a60..edd7fbdafdfb2d60429935d3473c2d01c927f0cf 100644
|
| --- a/components/autofill/core/browser/autofill_driver.h
|
| +++ b/components/autofill/core/browser/autofill_driver.h
|
| @@ -24,6 +24,7 @@ class URLRequestContextGetter;
|
| namespace autofill {
|
|
|
| class FormStructure;
|
| +class PasswordForm;
|
|
|
| // Interface that allows Autofill core code to interact with its driver (i.e.,
|
| // obtain information from it and give information to it). A concrete
|
| @@ -74,6 +75,10 @@ class AutofillDriver {
|
| virtual void SendAutofillTypePredictionsToRenderer(
|
| const std::vector<FormStructure*>& forms) = 0;
|
|
|
| + // Remove the |password_form| sugesstion
|
| + virtual void RemovePasswordAutofillSuggestion(
|
| + const PasswordForm& password_form) = 0;
|
| +
|
| // Tells the renderer to accept data list suggestions for |value|.
|
| virtual void RendererShouldAcceptDataListSuggestion(
|
| const base::string16& value) = 0;
|
|
|