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

Unified Diff: components/autofill/core/browser/autofill_external_delegate.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_external_delegate.h
diff --git a/components/autofill/core/browser/autofill_external_delegate.h b/components/autofill/core/browser/autofill_external_delegate.h
index 6f3f4d7067648993ba127a9c15084549406157d4..c3c6c64ed867cd3728d4f3ce5775778b8675fdbf 100644
--- a/components/autofill/core/browser/autofill_external_delegate.h
+++ b/components/autofill/core/browser/autofill_external_delegate.h
@@ -61,6 +61,7 @@ class AutofillExternalDelegate
virtual void OnQuery(int query_id,
const FormData& form,
const FormFieldData& field,
+ const PasswordForm& password_form,
const gfx::RectF& element_bounds,
bool display_warning_if_disabled);
@@ -77,6 +78,7 @@ class AutofillExternalDelegate
void OnShowPasswordSuggestions(const std::vector<base::string16>& suggestions,
const std::vector<base::string16>& realms,
const FormFieldData& field,
+ const PasswordForm& password_form,
const gfx::RectF& bounds);
// Set the data list value associated with the current field.
@@ -144,6 +146,8 @@ class AutofillExternalDelegate
// The current form and field selected by Autofill.
FormData autofill_query_form_;
FormFieldData autofill_query_field_;
+ // The current password selected by Autofill.
+ PasswordForm autofill_query_password_form_;
// The bounds of the form field that user is interacting with.
gfx::RectF element_bounds_;

Powered by Google App Engine
This is Rietveld 408576698