| 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 d6b95895241b908d239e2232bbf6350d95d84486..fbb11112492bf7f4b670e903f571f3067c19ba82 100644
|
| --- a/third_party/WebKit/Source/modules/payments/PaymentResponse.h
|
| +++ b/third_party/WebKit/Source/modules/payments/PaymentResponse.h
|
| @@ -35,6 +35,7 @@ class MODULES_EXPORT PaymentResponse final
|
|
|
| ScriptValue toJSONForBinding(ScriptState*) const;
|
|
|
| + const String& requestId() const { return m_requestId; }
|
| const String& methodName() const { return m_methodName; }
|
| ScriptValue details(ScriptState*, ExceptionState&) const;
|
| PaymentAddress* shippingAddress() const { return m_shippingAddress.get(); }
|
| @@ -48,6 +49,7 @@ class MODULES_EXPORT PaymentResponse final
|
| DECLARE_TRACE();
|
|
|
| private:
|
| + String m_requestId;
|
| String m_methodName;
|
| String m_stringifiedDetails;
|
| Member<PaymentAddress> m_shippingAddress;
|
|
|