Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(178)

Unified Diff: components/autofill/core/browser/autofill_driver.h

Issue 133893004: Allow deleting autofill password suggestions on Shift+Delete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Allow Password autofill suggestions deletion Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..78526460d52041bf0f51c4e52365110c2aab5dba 100644
--- a/components/autofill/core/browser/autofill_driver.h
+++ b/components/autofill/core/browser/autofill_driver.h
@@ -8,6 +8,7 @@
#include <vector>
#include "components/autofill/core/common/form_data.h"
+#include "components/autofill/core/common/password_form.h"
vabr (Chromium) 2014/01/29 16:09:36 You should not need to #include password_form.h fo
riadh.chtara 2014/02/04 16:22:03 Done.
namespace base {
class SequencedWorkerPool;
@@ -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;

Powered by Google App Engine
This is Rietveld 408576698