| Index: components/autofill/core/browser/autofill_download_unittest.cc
|
| diff --git a/components/autofill/core/browser/autofill_download_unittest.cc b/components/autofill/core/browser/autofill_download_unittest.cc
|
| index 9035c9cdafa7d043e02b1bdf16a5a4b715923f08..834772f9d04e09e11926e7a43d423333deecd756 100644
|
| --- a/components/autofill/core/browser/autofill_download_unittest.cc
|
| +++ b/components/autofill/core/browser/autofill_download_unittest.cc
|
| @@ -164,7 +164,7 @@ TEST_F(AutofillDownloadTest, QueryAndUploadTest) {
|
| field.form_control_type = "submit";
|
| form.fields.push_back(field);
|
|
|
| - FormStructure *form_structure = new FormStructure(form, std::string());
|
| + FormStructure *form_structure = new FormStructure(form);
|
| ScopedVector<FormStructure> form_structures;
|
| form_structures.push_back(form_structure);
|
|
|
| @@ -190,7 +190,7 @@ TEST_F(AutofillDownloadTest, QueryAndUploadTest) {
|
| field.form_control_type = "submit";
|
| form.fields.push_back(field);
|
|
|
| - form_structure = new FormStructure(form, std::string());
|
| + form_structure = new FormStructure(form);
|
| form_structures.push_back(form_structure);
|
|
|
| // Request with id 0.
|
| @@ -283,7 +283,7 @@ TEST_F(AutofillDownloadTest, QueryAndUploadTest) {
|
| field.name = ASCIIToUTF16("address2");
|
| field.form_control_type = "text";
|
| form.fields.push_back(field);
|
| - form_structure = new FormStructure(form, std::string());
|
| + form_structure = new FormStructure(form);
|
| form_structures.push_back(form_structure);
|
|
|
| // Request with id 3.
|
| @@ -354,7 +354,7 @@ TEST_F(AutofillDownloadTest, CacheQueryTest) {
|
| field.name = ASCIIToUTF16("lastname");
|
| form.fields.push_back(field);
|
|
|
| - FormStructure *form_structure = new FormStructure(form, std::string());
|
| + FormStructure *form_structure = new FormStructure(form);
|
| ScopedVector<FormStructure> form_structures0;
|
| form_structures0.push_back(form_structure);
|
|
|
| @@ -362,7 +362,7 @@ TEST_F(AutofillDownloadTest, CacheQueryTest) {
|
| field.label = ASCIIToUTF16("email");
|
| field.name = ASCIIToUTF16("email");
|
| form.fields.push_back(field);
|
| - form_structure = new FormStructure(form, std::string());
|
| + form_structure = new FormStructure(form);
|
| ScopedVector<FormStructure> form_structures1;
|
| form_structures1.push_back(form_structure);
|
|
|
| @@ -371,7 +371,7 @@ TEST_F(AutofillDownloadTest, CacheQueryTest) {
|
| field.label = ASCIIToUTF16("email2");
|
| field.name = ASCIIToUTF16("email2");
|
| form.fields.push_back(field);
|
| - form_structure = new FormStructure(form, std::string());
|
| + form_structure = new FormStructure(form);
|
| ScopedVector<FormStructure> form_structures2;
|
| form_structures2.push_back(form_structure);
|
|
|
|
|