OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "modules/payments/PaymentResponse.h" | 5 #include "modules/payments/PaymentResponse.h" |
6 | 6 |
7 #include "bindings/core/v8/JSONValuesForV8.h" | 7 #include "bindings/core/v8/JSONValuesForV8.h" |
8 #include "bindings/core/v8/ScriptState.h" | 8 #include "bindings/core/v8/ScriptState.h" |
9 #include "core/dom/DOMException.h" | 9 #include "core/dom/DOMException.h" |
10 #include "core/dom/ExceptionCode.h" | 10 #include "core/dom/ExceptionCode.h" |
| 11 #include "modules/payments/PaymentRequest.h" |
| 12 #include "platform/payments/PlatformPaymentResponse.h" |
| 13 #include "wtf/Assertions.h" |
11 | 14 |
12 namespace blink { | 15 namespace blink { |
13 | 16 |
14 PaymentResponse::PaymentResponse() | 17 PaymentResponse::PaymentResponse(const PlatformPaymentResponse& response, Paymen
tRequest* paymentRequest) |
| 18 : m_methodName(response.methodName) |
| 19 , m_stringifiedDetails(response.stringifiedDetails) |
| 20 , m_paymentRequest(paymentRequest) |
15 { | 21 { |
| 22 ASSERT(paymentRequest); |
16 } | 23 } |
17 | 24 |
18 PaymentResponse::~PaymentResponse() | 25 PaymentResponse::~PaymentResponse() |
19 { | 26 { |
20 } | 27 } |
21 | 28 |
22 ScriptValue PaymentResponse::details(ScriptState* scriptState, ExceptionState& e
xceptionState) const | 29 ScriptValue PaymentResponse::details(ScriptState* scriptState, ExceptionState& e
xceptionState) const |
23 { | 30 { |
24 return ScriptValue(scriptState, fromJSONString(scriptState, m_stringifiedDet
ails, exceptionState)); | 31 return ScriptValue(scriptState, fromJSONString(scriptState, m_stringifiedDet
ails, exceptionState)); |
25 } | 32 } |
26 | 33 |
27 ScriptPromise PaymentResponse::complete(ScriptState* scriptState, bool success) | 34 ScriptPromise PaymentResponse::complete(ScriptState* scriptState, bool success) |
28 { | 35 { |
29 return ScriptPromise::rejectWithDOMException(scriptState, DOMException::crea
te(NotSupportedError, "Not implemented.")); | 36 return m_paymentRequest->complete(scriptState, success); |
| 37 } |
| 38 |
| 39 DEFINE_TRACE(PaymentResponse) |
| 40 { |
| 41 visitor->trace(m_paymentRequest); |
30 } | 42 } |
31 | 43 |
32 } // namespace blink | 44 } // namespace blink |
OLD | NEW |