Chromium Code Reviews| Index: components/autofill/core/browser/test_autofill_client.h |
| diff --git a/components/autofill/core/browser/test_autofill_client.h b/components/autofill/core/browser/test_autofill_client.h |
| index 5b25ecfabab9796e5c913bdafccb807ba248a5d6..6019360497e04bec10ecdf9bbe236d398c82ee4d 100644 |
| --- a/components/autofill/core/browser/test_autofill_client.h |
| +++ b/components/autofill/core/browser/test_autofill_client.h |
| @@ -36,6 +36,7 @@ class TestAutofillClient : public AutofillClient { |
| IdentityProvider* GetIdentityProvider() override; |
| rappor::RapporServiceImpl* GetRapporServiceImpl() override; |
| ukm::UkmService* GetUkmService() override; |
| + SaveCardBubbleController* GetSaveCardBubbleController() override; |
| void ShowAutofillSettings() override; |
| void ShowUnmaskPrompt(const CreditCard& card, |
| UnmaskCardReason reason, |
| @@ -46,6 +47,7 @@ class TestAutofillClient : public AutofillClient { |
| void ConfirmSaveCreditCardToCloud( |
| const CreditCard& card, |
| std::unique_ptr<base::DictionaryValue> legal_message, |
| + bool should_cvc_be_requested, |
| const base::Closure& callback) override; |
| void ConfirmCreditCardFillAssist(const CreditCard& card, |
| const base::Closure& callback) override; |
| @@ -98,6 +100,9 @@ class TestAutofillClient : public AutofillClient { |
| std::unique_ptr<FakeIdentityProvider> identity_provider_; |
| std::unique_ptr<rappor::TestRapporServiceImpl> rappor_service_; |
| ukm::UkmServiceTestingHarness ukm_service_test_harness_; |
| +#if !defined(OS_ANDROID) |
|
Evan Stade
2017/04/12 23:56:22
don't think this is necessary either
Jared Saul
2017/04/13 00:42:35
Hmm, but when I remove it, this won't build. It l
Evan Stade
2017/04/13 02:21:31
oh, lame. OK, keep it.
|
| + std::unique_ptr<SaveCardBubbleController> save_card_bubble_controller_; |
| +#endif |
| GURL form_origin_; |
| DISALLOW_COPY_AND_ASSIGN(TestAutofillClient); |