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 280c470f7a164c247afcdeb81468aefa4136a997..5e38345a13185254bc5ebb45798c7c7e36196964 100644 |
--- a/third_party/WebKit/Source/modules/payments/PaymentResponse.h |
+++ b/third_party/WebKit/Source/modules/payments/PaymentResponse.h |
@@ -15,14 +15,16 @@ |
namespace blink { |
class ExceptionState; |
+class PaymentRequest; |
class ScriptState; |
+struct PlatformPaymentResponse; |
class PaymentResponse final : public GarbageCollectedFinalized<PaymentResponse>, public ScriptWrappable { |
DEFINE_WRAPPERTYPEINFO(); |
WTF_MAKE_NONCOPYABLE(PaymentResponse); |
public: |
- PaymentResponse(); |
+ PaymentResponse(const PlatformPaymentResponse&, PaymentRequest*); |
virtual ~PaymentResponse(); |
const String& methodName() const { return m_methodName; } |
@@ -30,11 +32,12 @@ public: |
ScriptPromise complete(ScriptState*, bool success); |
- DEFINE_INLINE_TRACE() {} |
+ DECLARE_TRACE(); |
private: |
String m_methodName; |
String m_stringifiedDetails; |
+ Member<PaymentRequest> m_paymentRequest; |
}; |
} // namespace blink |