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

Unified Diff: chrome/browser/autofill/autofill_server_browsertest.cc

Issue 2073093002: [Password Generation] Sends CSS classes inside autofill proto (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed useless FormStructure recreation in FormStructureTest.EncodeUploadRequest_WithCssClasses Created 4 years, 6 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
« no previous file with comments | « no previous file | chrome/renderer/autofill/form_autofill_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/autofill_server_browsertest.cc
diff --git a/chrome/browser/autofill/autofill_server_browsertest.cc b/chrome/browser/autofill/autofill_server_browsertest.cc
index abec77539f7e5332aadce278041041cfebd81940..8a224b9f1234a3911b542a137761eca99e04f031 100644
--- a/chrome/browser/autofill/autofill_server_browsertest.cc
+++ b/chrome/browser/autofill/autofill_server_browsertest.cc
@@ -163,13 +163,13 @@ IN_PROC_BROWSER_TEST_F(AutofillServerTest,
upload.set_form_name("test_form");
test::FillUploadField(upload.add_field(), 2594484045U, "one", "text", nullptr,
- nullptr, 2U);
+ nullptr, 2U, nullptr);
test::FillUploadField(upload.add_field(), 2750915947U, "two", "text", nullptr,
- "off", 2U);
+ "off", 2U, nullptr);
test::FillUploadField(upload.add_field(), 3494787134U, "three", "text",
- nullptr, nullptr, 2U);
+ nullptr, nullptr, 2U, nullptr);
test::FillUploadField(upload.add_field(), 1236501728U, "four", "text",
- nullptr, "off", 2U);
+ nullptr, "off", 2U, nullptr);
std::string expected_upload_string;
ASSERT_TRUE(upload.SerializeToString(&expected_upload_string));
« no previous file with comments | « no previous file | chrome/renderer/autofill/form_autofill_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698