| 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..76ab84550bed08e2fdc09c4f02defbd77b67d0d5 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,9 @@ class AutofillDriver {
|
| virtual void SendAutofillTypePredictionsToRenderer(
|
| const std::vector<FormStructure*>& forms) = 0;
|
|
|
| + 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;
|
|
|