| 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/PaymentAppRequest.h" |
| 10 #include "modules/serviceworkers/ExtendableEvent.h" | 10 #include "modules/serviceworkers/ExtendableEvent.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 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 PaymentAppRequest&, |
| 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 void appRequest(PaymentAppRequest&) const; | 34 const String& topLevelOrigin() const; |
| 35 const String& paymentRequestOrigin() const; |
| 36 const String& paymentRequestId() const; |
| 37 const HeapVector<PaymentMethodData>& methodData() const; |
| 38 void total(PaymentItem& value) const; |
| 39 const HeapVector<PaymentDetailsModifier>& modifiers() const; |
| 40 const String& instrumentKey() const; |
| 41 |
| 35 void respondWith(ScriptState*, ScriptPromise, ExceptionState&); | 42 void respondWith(ScriptState*, ScriptPromise, ExceptionState&); |
| 36 | 43 |
| 37 DECLARE_VIRTUAL_TRACE(); | 44 DECLARE_VIRTUAL_TRACE(); |
| 38 | 45 |
| 39 private: | 46 private: |
| 40 PaymentRequestEvent(const AtomicString& type, | 47 PaymentRequestEvent(const AtomicString& type, |
| 41 const PaymentAppRequest&, | 48 const PaymentAppRequest&, |
| 42 RespondWithObserver*, | 49 RespondWithObserver*, |
| 43 WaitUntilObserver*); | 50 WaitUntilObserver*); |
| 44 PaymentAppRequest app_request_; | 51 |
| 52 String top_level_origin_; |
| 53 String payment_request_origin_; |
| 54 String payment_request_id_; |
| 55 HeapVector<PaymentMethodData> method_data_; |
| 56 PaymentItem total_; |
| 57 HeapVector<PaymentDetailsModifier> modifiers_; |
| 58 String instrument_key_; |
| 59 |
| 45 Member<RespondWithObserver> observer_; | 60 Member<RespondWithObserver> observer_; |
| 46 }; | 61 }; |
| 47 | 62 |
| 48 } // namespace blink | 63 } // namespace blink |
| 49 | 64 |
| 50 #endif // PaymentRequestEvent_h | 65 #endif // PaymentRequestEvent_h |
| OLD | NEW |