| 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 #ifndef PaymentResponse_h | 5 #ifndef PaymentResponse_h |
| 6 #define PaymentResponse_h | 6 #define PaymentResponse_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptPromise.h" | 8 #include "bindings/core/v8/ScriptPromise.h" |
| 9 #include "bindings/core/v8/ScriptValue.h" | 9 #include "bindings/core/v8/ScriptValue.h" |
| 10 #include "bindings/core/v8/ScriptWrappable.h" | 10 #include "bindings/core/v8/ScriptWrappable.h" |
| 11 #include "modules/ModulesExport.h" | 11 #include "modules/ModulesExport.h" |
| 12 #include "modules/payments/CurrencyAmount.h" | 12 #include "modules/payments/PaymentCurrencyAmount.h" |
| 13 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
| 14 #include "public/platform/modules/payments/payment_request.mojom-blink.h" | 14 #include "public/platform/modules/payments/payment_request.mojom-blink.h" |
| 15 #include "wtf/Noncopyable.h" | 15 #include "wtf/Noncopyable.h" |
| 16 #include "wtf/text/WTFString.h" | 16 #include "wtf/text/WTFString.h" |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 | 19 |
| 20 class ExceptionState; | 20 class ExceptionState; |
| 21 class PaymentAddress; | 21 class PaymentAddress; |
| 22 class PaymentCompleter; | 22 class PaymentCompleter; |
| 23 class ScriptState; | 23 class ScriptState; |
| 24 | 24 |
| 25 class MODULES_EXPORT PaymentResponse final : public GarbageCollectedFinalized<Pa
ymentResponse>, public ScriptWrappable { | 25 class MODULES_EXPORT PaymentResponse final : public GarbageCollectedFinalized<Pa
ymentResponse>, public ScriptWrappable { |
| 26 DEFINE_WRAPPERTYPEINFO(); | 26 DEFINE_WRAPPERTYPEINFO(); |
| 27 WTF_MAKE_NONCOPYABLE(PaymentResponse); | 27 WTF_MAKE_NONCOPYABLE(PaymentResponse); |
| 28 | 28 |
| 29 public: | 29 public: |
| 30 PaymentResponse(mojom::blink::PaymentResponsePtr, PaymentCompleter*); | 30 PaymentResponse(mojom::blink::PaymentResponsePtr, PaymentCompleter*); |
| 31 virtual ~PaymentResponse(); | 31 virtual ~PaymentResponse(); |
| 32 | 32 |
| 33 const String& methodName() const { return m_methodName; } | 33 const String& methodName() const { return m_methodName; } |
| 34 void totalAmount(CurrencyAmount& result) const { result = m_totalAmount; } | 34 void totalAmount(PaymentCurrencyAmount& result) const { result = m_totalAmou
nt; } |
| 35 ScriptValue details(ScriptState*, ExceptionState&) const; | 35 ScriptValue details(ScriptState*, ExceptionState&) const; |
| 36 PaymentAddress* shippingAddress() const { return m_shippingAddress.get(); } | 36 PaymentAddress* shippingAddress() const { return m_shippingAddress.get(); } |
| 37 const String& payerEmail() const { return m_payerEmail; } | 37 const String& payerEmail() const { return m_payerEmail; } |
| 38 const String& payerPhone() const { return m_payerPhone; } | 38 const String& payerPhone() const { return m_payerPhone; } |
| 39 | 39 |
| 40 ScriptPromise complete(ScriptState*, const String& result = ""); | 40 ScriptPromise complete(ScriptState*, const String& result = ""); |
| 41 | 41 |
| 42 DECLARE_TRACE(); | 42 DECLARE_TRACE(); |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 String m_methodName; | 45 String m_methodName; |
| 46 CurrencyAmount m_totalAmount; | 46 PaymentCurrencyAmount m_totalAmount; |
| 47 String m_stringifiedDetails; | 47 String m_stringifiedDetails; |
| 48 Member<PaymentAddress> m_shippingAddress; | 48 Member<PaymentAddress> m_shippingAddress; |
| 49 String m_payerEmail; | 49 String m_payerEmail; |
| 50 String m_payerPhone; | 50 String m_payerPhone; |
| 51 Member<PaymentCompleter> m_paymentCompleter; | 51 Member<PaymentCompleter> m_paymentCompleter; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace blink | 54 } // namespace blink |
| 55 | 55 |
| 56 #endif // PaymentResponse_h | 56 #endif // PaymentResponse_h |
| OLD | NEW |