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 "platform/heap/Handle.h" | 12 #include "platform/heap/Handle.h" |
13 #include "public/platform/modules/payments/payment_request.mojom-blink.h" | 13 #include "public/platform/modules/payments/payment_request.mojom-blink.h" |
14 #include "wtf/Noncopyable.h" | 14 #include "wtf/Noncopyable.h" |
15 #include "wtf/text/WTFString.h" | 15 #include "wtf/text/WTFString.h" |
16 | 16 |
17 namespace blink { | 17 namespace blink { |
18 | 18 |
19 class ExceptionState; | 19 class ExceptionState; |
| 20 class PaymentAddress; |
20 class PaymentCompleter; | 21 class PaymentCompleter; |
21 class ScriptState; | 22 class ScriptState; |
22 | 23 |
23 class MODULES_EXPORT PaymentResponse final : public GarbageCollectedFinalized<Pa
ymentResponse>, public ScriptWrappable { | 24 class MODULES_EXPORT PaymentResponse final : public GarbageCollectedFinalized<Pa
ymentResponse>, public ScriptWrappable { |
24 DEFINE_WRAPPERTYPEINFO(); | 25 DEFINE_WRAPPERTYPEINFO(); |
25 WTF_MAKE_NONCOPYABLE(PaymentResponse); | 26 WTF_MAKE_NONCOPYABLE(PaymentResponse); |
26 | 27 |
27 public: | 28 public: |
28 PaymentResponse(mojom::blink::PaymentResponsePtr, PaymentCompleter*); | 29 PaymentResponse(mojom::blink::PaymentResponsePtr, PaymentCompleter*); |
29 virtual ~PaymentResponse(); | 30 virtual ~PaymentResponse(); |
30 | 31 |
31 const String& methodName() const { return m_methodName; } | 32 const String& methodName() const { return m_methodName; } |
32 ScriptValue details(ScriptState*, ExceptionState&) const; | 33 ScriptValue details(ScriptState*, ExceptionState&) const; |
| 34 PaymentAddress* shippingAddress() const { return m_shippingAddress.get(); } |
33 | 35 |
34 ScriptPromise complete(ScriptState*, bool success); | 36 ScriptPromise complete(ScriptState*, bool success); |
35 | 37 |
36 DECLARE_TRACE(); | 38 DECLARE_TRACE(); |
37 | 39 |
38 private: | 40 private: |
39 String m_methodName; | 41 String m_methodName; |
40 String m_stringifiedDetails; | 42 String m_stringifiedDetails; |
| 43 Member<PaymentAddress> m_shippingAddress; |
41 Member<PaymentCompleter> m_paymentCompleter; | 44 Member<PaymentCompleter> m_paymentCompleter; |
42 }; | 45 }; |
43 | 46 |
44 } // namespace blink | 47 } // namespace blink |
45 | 48 |
46 #endif // PaymentResponse_h | 49 #endif // PaymentResponse_h |
OLD | NEW |