Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Side by Side Diff: third_party/WebKit/Source/modules/payments/PaymentRequestEvent.h

Issue 2903643002: PaymentHandler: Implement PaymentRequestEvent constructor. (Closed)
Patch Set: PaymentHandler: Implement PaymentRequestEvent constructor. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698