| 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/PaymentRequestEventInit.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 PaymentRequestEventInit&); |
| 28 static PaymentRequestEvent* Create(const AtomicString& type, |
| 27 const PaymentRequestEventInit&, | 29 const PaymentRequestEventInit&, |
| 28 RespondWithObserver*, | 30 RespondWithObserver*, |
| 29 WaitUntilObserver*); | 31 WaitUntilObserver*); |
| 30 ~PaymentRequestEvent() override; | 32 ~PaymentRequestEvent() override; |
| 31 | 33 |
| 32 const AtomicString& InterfaceName() const override; | 34 const AtomicString& InterfaceName() const override; |
| 33 | 35 |
| 34 const String& topLevelOrigin() const; | 36 const String& topLevelOrigin() const; |
| 35 const String& paymentRequestOrigin() const; | 37 const String& paymentRequestOrigin() const; |
| 36 const String& paymentRequestId() const; | 38 const String& paymentRequestId() const; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 57 PaymentItem total_; | 59 PaymentItem total_; |
| 58 HeapVector<PaymentDetailsModifier> modifiers_; | 60 HeapVector<PaymentDetailsModifier> modifiers_; |
| 59 String instrument_key_; | 61 String instrument_key_; |
| 60 | 62 |
| 61 Member<RespondWithObserver> observer_; | 63 Member<RespondWithObserver> observer_; |
| 62 }; | 64 }; |
| 63 | 65 |
| 64 } // namespace blink | 66 } // namespace blink |
| 65 | 67 |
| 66 #endif // PaymentRequestEvent_h | 68 #endif // PaymentRequestEvent_h |
| OLD | NEW |