| Index: components/autofill/core/browser/autofill_merge_unittest.cc | 
| diff --git a/components/autofill/core/browser/autofill_merge_unittest.cc b/components/autofill/core/browser/autofill_merge_unittest.cc | 
| index a4aceaab1322e133575e8857b9cb13ff0bd06991..d04acca02c4a361f768a336fa11547433dd4d91d 100644 | 
| --- a/components/autofill/core/browser/autofill_merge_unittest.cc | 
| +++ b/components/autofill/core/browser/autofill_merge_unittest.cc | 
| @@ -271,8 +271,10 @@ void AutofillMergeTest::MergeProfiles(const std::string& profiles, | 
|  | 
| // Import the profile. | 
| std::unique_ptr<CreditCard> imported_credit_card; | 
| -      personal_data_.ImportFormData(form_structure, false, | 
| -                                    &imported_credit_card); | 
| +      bool imported_credit_card_matches_masked_server_credit_card; | 
| +      personal_data_.ImportFormData( | 
| +          form_structure, false, &imported_credit_card, | 
| +          &imported_credit_card_matches_masked_server_credit_card); | 
| EXPECT_FALSE(imported_credit_card); | 
|  | 
| // Clear the |form| to start a new profile. | 
|  |