| Index: chrome/browser/autofill/autofill_manager_unittest.cc
|
| diff --git a/chrome/browser/autofill/autofill_manager_unittest.cc b/chrome/browser/autofill/autofill_manager_unittest.cc
|
| index a9a915d8d785c9545542ebeb17653fc9343d1c29..1d264a7e40ae10ee58906cc13401fe74f3aed08e 100644
|
| --- a/chrome/browser/autofill/autofill_manager_unittest.cc
|
| +++ b/chrome/browser/autofill/autofill_manager_unittest.cc
|
| @@ -135,6 +135,7 @@ void CreateTestFormData(FormData* form) {
|
| form->method = ASCIIToUTF16("POST");
|
| form->origin = GURL("http://myform.com/form.html");
|
| form->action = GURL("http://myform.com/submit.html");
|
| + form->user_submitted = true;
|
|
|
| webkit_glue::FormField field;
|
| autofill_unittest::CreateTestFormField(
|
| @@ -177,6 +178,7 @@ void CreateTestFormDataBilling(FormData* form) {
|
| form->method = ASCIIToUTF16("POST");
|
| form->origin = GURL("https://myform.com/form.html");
|
| form->action = GURL("https://myform.com/submit.html");
|
| + form->user_submitted = true;
|
|
|
| webkit_glue::FormField field;
|
| autofill_unittest::CreateTestFormField(
|
| @@ -1157,6 +1159,7 @@ TEST_F(AutoFillManagerTest, HiddenFields) {
|
| form.method = ASCIIToUTF16("POST");
|
| form.origin = GURL("http://myform.com/form.html");
|
| form.action = GURL("http://myform.com/submit.html");
|
| + form.user_submitted = true;
|
|
|
| webkit_glue::FormField field;
|
| autofill_unittest::CreateTestFormField(
|
|
|