| 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 PaymentRequestEvent_h | 5 #ifndef PaymentRequestEvent_h |
| 6 #define PaymentRequestEvent_h | 6 #define PaymentRequestEvent_h |
| 7 | 7 |
| 8 #include "modules/EventModules.h" | 8 #include "modules/EventModules.h" |
| 9 #include "modules/payments/PaymentAppRequest.h" | 9 #include "modules/payments/PaymentRequestEventInit.h" |
| 10 #include "modules/serviceworkers/ExtendableEvent.h" | 10 #include "modules/serviceworkers/ExtendableEvent.h" |
| 11 #include "platform/heap/Handle.h" | 11 #include "platform/heap/Handle.h" |
| 12 | 12 |
| 13 namespace WTF { | 13 namespace WTF { |
| 14 class AtomicString; | 14 class AtomicString; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 | 18 |
| 19 class RespondWithObserver; | 19 class RespondWithObserver; |
| 20 | 20 |
| 21 class MODULES_EXPORT PaymentRequestEvent final : public ExtendableEvent { | 21 class MODULES_EXPORT PaymentRequestEvent final : public ExtendableEvent { |
| 22 DEFINE_WRAPPERTYPEINFO(); | 22 DEFINE_WRAPPERTYPEINFO(); |
| 23 WTF_MAKE_NONCOPYABLE(PaymentRequestEvent); | 23 WTF_MAKE_NONCOPYABLE(PaymentRequestEvent); |
| 24 | 24 |
| 25 public: | 25 public: |
| 26 static PaymentRequestEvent* Create(const AtomicString& type, | 26 static PaymentRequestEvent* Create(const AtomicString& type, |
| 27 const PaymentAppRequest&, | 27 const PaymentRequestEventInit&, |
| 28 RespondWithObserver*, | 28 RespondWithObserver*, |
| 29 WaitUntilObserver*); | 29 WaitUntilObserver*); |
| 30 ~PaymentRequestEvent() override; | 30 ~PaymentRequestEvent() override; |
| 31 | 31 |
| 32 const AtomicString& InterfaceName() const override; | 32 const AtomicString& InterfaceName() const override; |
| 33 | 33 |
| 34 const String& topLevelOrigin() const; | 34 const String& topLevelOrigin() const; |
| 35 const String& paymentRequestOrigin() const; | 35 const String& paymentRequestOrigin() const; |
| 36 const String& paymentRequestId() const; | 36 const String& paymentRequestId() const; |
| 37 const HeapVector<PaymentMethodData>& methodData() const; | 37 const HeapVector<PaymentMethodData>& methodData() const; |
| 38 void total(PaymentItem& value) const; | 38 void total(PaymentItem& value) const; |
| 39 const HeapVector<PaymentDetailsModifier>& modifiers() const; | 39 const HeapVector<PaymentDetailsModifier>& modifiers() const; |
| 40 const String& instrumentKey() const; | 40 const String& instrumentKey() const; |
| 41 | 41 |
| 42 ScriptPromise openWindow(ScriptState*, const String& url); | 42 ScriptPromise openWindow(ScriptState*, const String& url); |
| 43 void respondWith(ScriptState*, ScriptPromise, ExceptionState&); | 43 void respondWith(ScriptState*, ScriptPromise, ExceptionState&); |
| 44 | 44 |
| 45 DECLARE_VIRTUAL_TRACE(); | 45 DECLARE_VIRTUAL_TRACE(); |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 PaymentRequestEvent(const AtomicString& type, | 48 PaymentRequestEvent(const AtomicString& type, |
| 49 const PaymentAppRequest&, | 49 const PaymentRequestEventInit&, |
| 50 RespondWithObserver*, | 50 RespondWithObserver*, |
| 51 WaitUntilObserver*); | 51 WaitUntilObserver*); |
| 52 | 52 |
| 53 String top_level_origin_; | 53 String top_level_origin_; |
| 54 String payment_request_origin_; | 54 String payment_request_origin_; |
| 55 String payment_request_id_; | 55 String payment_request_id_; |
| 56 HeapVector<PaymentMethodData> method_data_; | 56 HeapVector<PaymentMethodData> method_data_; |
| 57 PaymentItem total_; | 57 PaymentItem total_; |
| 58 HeapVector<PaymentDetailsModifier> modifiers_; | 58 HeapVector<PaymentDetailsModifier> modifiers_; |
| 59 String instrument_key_; | 59 String instrument_key_; |
| 60 | 60 |
| 61 Member<RespondWithObserver> observer_; | 61 Member<RespondWithObserver> observer_; |
| 62 }; | 62 }; |
| 63 | 63 |
| 64 } // namespace blink | 64 } // namespace blink |
| 65 | 65 |
| 66 #endif // PaymentRequestEvent_h | 66 #endif // PaymentRequestEvent_h |
| OLD | NEW |