Chromium Code Reviews| 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 "wtf/Assertions.h" | |
| 11 | 13 |
| 12 namespace blink { | 14 namespace blink { |
| 13 | 15 |
| 14 PaymentResponse::PaymentResponse() | 16 PaymentResponse::PaymentResponse(mojom::wtf::PaymentResponsePtr response, Paymen tRequest* paymentRequest) |
| 17 : m_methodName(response->method_name) | |
| 18 , m_stringifiedDetails(response->stringified_details) | |
| 19 , m_paymentRequest(paymentRequest) | |
| 15 { | 20 { |
| 21 ASSERT(paymentRequest); | |
|
Marijn Kruisselbrink
2016/03/25 17:13:31
DCHECK? (probably applies to all ASSERTs)
please use gerrit instead
2016/03/25 19:26:37
Done.
| |
| 16 } | 22 } |
| 17 | 23 |
| 18 PaymentResponse::~PaymentResponse() | 24 PaymentResponse::~PaymentResponse() |
| 19 { | 25 { |
| 20 } | 26 } |
| 21 | 27 |
| 22 ScriptValue PaymentResponse::details(ScriptState* scriptState, ExceptionState& e xceptionState) const | 28 ScriptValue PaymentResponse::details(ScriptState* scriptState, ExceptionState& e xceptionState) const |
| 23 { | 29 { |
| 24 return ScriptValue(scriptState, fromJSONString(scriptState, m_stringifiedDet ails, exceptionState)); | 30 return ScriptValue(scriptState, fromJSONString(scriptState, m_stringifiedDet ails, exceptionState)); |
| 25 } | 31 } |
| 26 | 32 |
| 27 ScriptPromise PaymentResponse::complete(ScriptState* scriptState, bool success) | 33 ScriptPromise PaymentResponse::complete(ScriptState* scriptState, bool success) |
| 28 { | 34 { |
| 29 return ScriptPromise::rejectWithDOMException(scriptState, DOMException::crea te(NotSupportedError, "Not implemented.")); | 35 return m_paymentRequest->complete(scriptState, success); |
| 36 } | |
| 37 | |
| 38 DEFINE_TRACE(PaymentResponse) | |
| 39 { | |
| 40 visitor->trace(m_paymentRequest); | |
| 30 } | 41 } |
| 31 | 42 |
| 32 } // namespace blink | 43 } // namespace blink |
| OLD | NEW |