| Index: third_party/WebKit/Source/modules/payments/PaymentResponse.h
|
| diff --git a/third_party/WebKit/Source/modules/payments/PaymentResponse.h b/third_party/WebKit/Source/modules/payments/PaymentResponse.h
|
| index aa54a93acc286d2d93a4148340cd937a8bac9c05..5d6abfb53f716c75c2aabc2d424c9bb77918fe21 100644
|
| --- a/third_party/WebKit/Source/modules/payments/PaymentResponse.h
|
| +++ b/third_party/WebKit/Source/modules/payments/PaymentResponse.h
|
| @@ -17,6 +17,7 @@
|
| namespace blink {
|
|
|
| class ExceptionState;
|
| +class PaymentAddress;
|
| class PaymentCompleter;
|
| class ScriptState;
|
|
|
| @@ -30,6 +31,7 @@ public:
|
|
|
| const String& methodName() const { return m_methodName; }
|
| ScriptValue details(ScriptState*, ExceptionState&) const;
|
| + PaymentAddress* shippingAddress() const { return m_shippingAddress.get(); }
|
|
|
| ScriptPromise complete(ScriptState*, bool success);
|
|
|
| @@ -38,6 +40,7 @@ public:
|
| private:
|
| String m_methodName;
|
| String m_stringifiedDetails;
|
| + Member<PaymentAddress> m_shippingAddress;
|
| Member<PaymentCompleter> m_paymentCompleter;
|
| };
|
|
|
|
|