Chromium Code Reviews| Index: components/payments/core/test_payment_request_delegate.h |
| diff --git a/components/payments/core/test_payment_request_delegate.h b/components/payments/core/test_payment_request_delegate.h |
| index a38a6067051a354a3051430c67a22135d336c699..6b6c457bc47a2be3bae10bfeb7f5867f7ce7f063 100644 |
| --- a/components/payments/core/test_payment_request_delegate.h |
| +++ b/components/payments/core/test_payment_request_delegate.h |
| @@ -33,6 +33,8 @@ class TestPaymentRequestDelegate : public PaymentRequestDelegate { |
| autofill::RegionDataLoader* GetRegionDataLoader() override; |
| TestAddressNormalizer* GetTestAddressNormalizer(); |
|
Mathieu
2017/05/03 02:12:48
test_address_normalizer()?
sebsg
2017/05/03 15:14:47
Done.
|
| + void DelayFullCardRequestCompletion(); |
| + void CompleteFullCardRequest(); |
|
Mathieu
2017/05/03 02:12:48
I don't see where this is used?
sebsg
2017/05/03 15:14:47
It's used in 2 places at the moment:
https://cs.c
|
| private: |
| autofill::PersonalDataManager* personal_data_manager_; |
| @@ -43,6 +45,8 @@ class TestPaymentRequestDelegate : public PaymentRequestDelegate { |
| autofill::CreditCard full_card_request_card_; |
| base::WeakPtr<autofill::payments::FullCardRequest::ResultDelegate> |
| full_card_result_delegate_; |
| + |
| + bool instantaneous_full_card_request_result_ = true; |
| DISALLOW_COPY_AND_ASSIGN(TestPaymentRequestDelegate); |
| }; |