| Index: components/autofill/core/browser/autofill_external_delegate_unittest.cc
|
| diff --git a/components/autofill/core/browser/autofill_external_delegate_unittest.cc b/components/autofill/core/browser/autofill_external_delegate_unittest.cc
|
| index 0349cb5fea5ed2b2e2e2751f192b5021794e775e..782f07c22620b025d15d4125b07c32266b7da362 100644
|
| --- a/components/autofill/core/browser/autofill_external_delegate_unittest.cc
|
| +++ b/components/autofill/core/browser/autofill_external_delegate_unittest.cc
|
| @@ -98,11 +98,12 @@ class MockAutofillManager : public AutofillManager {
|
| const FormFieldData& field,
|
| int unique_id));
|
|
|
| - MOCK_METHOD4(FillCreditCardForm,
|
| + MOCK_METHOD5(FillCreditCardForm,
|
| void(int query_id,
|
| const FormData& form,
|
| const FormFieldData& field,
|
| - const CreditCard& credit_card));
|
| + const CreditCard& credit_card,
|
| + const base::string16& cvc));
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(MockAutofillManager);
|
| @@ -573,7 +574,8 @@ TEST_F(AutofillExternalDelegateUnitTest, FillCreditCardForm) {
|
| EXPECT_CALL(*autofill_manager_,
|
| FillCreditCardForm(
|
| _, _, _, CreditCardMatches(card_number, expiration_month,
|
| - expiration_year)));
|
| + expiration_year),
|
| + base::string16()));
|
| external_delegate_->OnCreditCardScanned(card_number, expiration_month,
|
| expiration_year);
|
| }
|
|
|