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

Unified Diff: components/autofill/core/browser/test_autofill_external_delegate.cc

Issue 133893004: Allow deleting autofill password suggestions on Shift+Delete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Allow deleting autofill password suggestions on Shift+Delete 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/test_autofill_external_delegate.cc
diff --git a/components/autofill/core/browser/test_autofill_external_delegate.cc b/components/autofill/core/browser/test_autofill_external_delegate.cc
index 94e6b9ec8bc72bdc8be2c8dc36a778ab73aa159e..7c75c90ac3db6e4b6ba3e453c4bc6dbfc172e772 100644
--- a/components/autofill/core/browser/test_autofill_external_delegate.cc
+++ b/components/autofill/core/browser/test_autofill_external_delegate.cc
@@ -16,7 +16,9 @@ void GenerateTestAutofillPopup(
field.is_focusable = true;
field.should_autocomplete = true;
gfx::RectF bounds(100.f, 100.f);
- autofill_external_delegate->OnQuery(query_id, form, field, bounds, false);
+ PasswordForm passwordform;
+ autofill_external_delegate->OnQuery(query_id, form, field,
+ passwordform, bounds, false);
std::vector<base::string16> autofill_item;
autofill_item.push_back(base::string16());

Powered by Google App Engine
This is Rietveld 408576698