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 e9981706c8ab9b6b35ca0a32b8ef009f726fd866..bf4c8b330cc03757b86d33e271d40f57582101dd 100644 |
--- a/components/autofill/core/browser/autofill_driver.h |
+++ b/components/autofill/core/browser/autofill_driver.h |
@@ -20,6 +20,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 |
@@ -64,6 +65,10 @@ class AutofillDriver { |
virtual void SendAutofillTypePredictionsToRenderer( |
const std::vector<FormStructure*>& forms) = 0; |
+ // Remove the |password_form| sugesstion |
vabr (Chromium)
2014/04/01 16:56:08
missing a full-stop + there's a typo (sugesstion).
rchtara
2014/04/03 08:44:50
Done.
|
+ 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; |