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 c9932bdb4f5c263a1ac6d991c773fcf1160245f4..cad121d6858c3a686172dc9fea232dfea839dcfa 100644 |
--- a/chrome/browser/autofill/autofill_manager_unittest.cc |
+++ b/chrome/browser/autofill/autofill_manager_unittest.cc |
@@ -760,7 +760,8 @@ class AutofillManagerTest : public ChromeRenderViewHostTestHarness { |
class TestFormStructure : public FormStructure { |
public: |
- explicit TestFormStructure(const FormData& form) : FormStructure(form) {} |
+ explicit TestFormStructure(const FormData& form) |
+ : FormStructure(form, false) {} |
virtual ~TestFormStructure() {} |
void SetFieldTypes(const std::vector<AutofillFieldType>& heuristic_types, |
@@ -2675,7 +2676,7 @@ TEST_F(AutofillManagerTest, FormSubmittedWithDifferentFields) { |
FormsSeen(forms); |
// Cache the expected form signature. |
- std::string signature = FormStructure(form).FormSignature(); |
+ std::string signature = FormStructure(form, false).FormSignature(); |
// Change the structure of the form prior to submission. |
// Websites would typically invoke JavaScript either on page load or on form |