| 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" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 DEFINE_WRAPPERTYPEINFO(); | 25 DEFINE_WRAPPERTYPEINFO(); |
| 26 WTF_MAKE_NONCOPYABLE(PaymentResponse); | 26 WTF_MAKE_NONCOPYABLE(PaymentResponse); |
| 27 | 27 |
| 28 public: | 28 public: |
| 29 PaymentResponse(mojom::blink::PaymentResponsePtr, PaymentCompleter*); | 29 PaymentResponse(mojom::blink::PaymentResponsePtr, PaymentCompleter*); |
| 30 virtual ~PaymentResponse(); | 30 virtual ~PaymentResponse(); |
| 31 | 31 |
| 32 const String& methodName() const { return m_methodName; } | 32 const String& methodName() const { return m_methodName; } |
| 33 ScriptValue details(ScriptState*, ExceptionState&) const; | 33 ScriptValue details(ScriptState*, ExceptionState&) const; |
| 34 PaymentAddress* shippingAddress() const { return m_shippingAddress.get(); } | 34 PaymentAddress* shippingAddress() const { return m_shippingAddress.get(); } |
| 35 const String& payerEmail() const { return m_payerEmail; } |
| 36 const String& payerPhone() const { return m_payerPhone; } |
| 35 | 37 |
| 36 ScriptPromise complete(ScriptState*, bool success); | 38 ScriptPromise complete(ScriptState*, bool success); |
| 37 | 39 |
| 38 DECLARE_TRACE(); | 40 DECLARE_TRACE(); |
| 39 | 41 |
| 40 private: | 42 private: |
| 41 String m_methodName; | 43 String m_methodName; |
| 42 String m_stringifiedDetails; | 44 String m_stringifiedDetails; |
| 43 Member<PaymentAddress> m_shippingAddress; | 45 Member<PaymentAddress> m_shippingAddress; |
| 46 String m_payerEmail; |
| 47 String m_payerPhone; |
| 44 Member<PaymentCompleter> m_paymentCompleter; | 48 Member<PaymentCompleter> m_paymentCompleter; |
| 45 }; | 49 }; |
| 46 | 50 |
| 47 } // namespace blink | 51 } // namespace blink |
| 48 | 52 |
| 49 #endif // PaymentResponse_h | 53 #endif // PaymentResponse_h |
| OLD | NEW |