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

Unified Diff: chrome/renderer/autofill/password_autofill_agent_browsertest.cc

Issue 1059393002: Remove --respect-autocomplete-off-autofill flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix last 3 tests Created 5 years, 8 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: chrome/renderer/autofill/password_autofill_agent_browsertest.cc
diff --git a/chrome/renderer/autofill/password_autofill_agent_browsertest.cc b/chrome/renderer/autofill/password_autofill_agent_browsertest.cc
index 37ab84ceb5ee8c250f273af05a73ee316fac0409..beb842f02ca8206d1e71f1d35cfbc03879508290 100644
--- a/chrome/renderer/autofill/password_autofill_agent_browsertest.cc
+++ b/chrome/renderer/autofill/password_autofill_agent_browsertest.cc
@@ -1910,9 +1910,9 @@ TEST_F(PasswordAutofillAgentTest, FindingUsernameWithAutofillPredictions) {
// Find FormData for visible password form.
blink::WebFormElement form_element = username_element_.form();
FormData form_data;
- ASSERT_TRUE(WebFormElementToFormData(
- form_element, blink::WebFormControlElement(), REQUIRE_NONE, EXTRACT_NONE,
- &form_data, nullptr));
+ ASSERT_TRUE(WebFormElementToFormData(form_element,
+ blink::WebFormControlElement(),
+ EXTRACT_NONE, &form_data, nullptr));
// Simulate Autofill predictions: the first field is username.
std::map<autofill::FormData, autofill::FormFieldData> predictions;
predictions[form_data] = form_data.fields[0];

Powered by Google App Engine
This is Rietveld 408576698