| Index: components/autofill/content/browser/autofill_driver_impl_unittest.cc
|
| diff --git a/components/autofill/content/browser/autofill_driver_impl_unittest.cc b/components/autofill/content/browser/autofill_driver_impl_unittest.cc
|
| index 875b783a565219a6173305bb1798653888c1d831..6986f0779b5a014b992307d941aa650a8e619943 100644
|
| --- a/components/autofill/content/browser/autofill_driver_impl_unittest.cc
|
| +++ b/components/autofill/content/browser/autofill_driver_impl_unittest.cc
|
| @@ -176,7 +176,7 @@ TEST_F(AutofillDriverImplTest, FormDataSentToRenderer) {
|
| TEST_F(AutofillDriverImplTest, TypePredictionsNotSentToRendererWhenDisabled) {
|
| FormData form;
|
| test::CreateTestAddressFormData(&form);
|
| - FormStructure form_structure(form, std::string());
|
| + FormStructure form_structure(form);
|
| std::vector<FormStructure*> forms(1, &form_structure);
|
| driver_->SendAutofillTypePredictionsToRenderer(forms);
|
| EXPECT_FALSE(GetFieldTypePredictionsAvailable(NULL));
|
| @@ -188,7 +188,7 @@ TEST_F(AutofillDriverImplTest, TypePredictionsSentToRendererWhenEnabled) {
|
|
|
| FormData form;
|
| test::CreateTestAddressFormData(&form);
|
| - FormStructure form_structure(form, std::string());
|
| + FormStructure form_structure(form);
|
| std::vector<FormStructure*> forms(1, &form_structure);
|
| std::vector<FormDataPredictions> expected_type_predictions;
|
| FormStructure::GetFieldTypePredictions(forms, &expected_type_predictions);
|
|
|