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

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

Issue 2848243004: Clean up bindings/core/v8 (Part 2) (Closed)
Patch Set: Rebase Created 3 years, 7 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 PaymentRequest_h 5 #ifndef PaymentRequest_h
6 #define PaymentRequest_h 6 #define PaymentRequest_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"
11 #include "components/payments/mojom/payment_request.mojom-blink.h" 10 #include "components/payments/mojom/payment_request.mojom-blink.h"
12 #include "core/dom/ContextLifecycleObserver.h" 11 #include "core/dom/ContextLifecycleObserver.h"
13 #include "core/events/EventTarget.h" 12 #include "core/events/EventTarget.h"
14 #include "modules/ModulesExport.h" 13 #include "modules/ModulesExport.h"
15 #include "modules/payments/PaymentCompleter.h" 14 #include "modules/payments/PaymentCompleter.h"
16 #include "modules/payments/PaymentMethodData.h" 15 #include "modules/payments/PaymentMethodData.h"
17 #include "modules/payments/PaymentOptions.h" 16 #include "modules/payments/PaymentOptions.h"
18 #include "modules/payments/PaymentUpdater.h" 17 #include "modules/payments/PaymentUpdater.h"
19 #include "mojo/public/cpp/bindings/binding.h" 18 #include "mojo/public/cpp/bindings/binding.h"
20 #include "platform/Timer.h" 19 #include "platform/Timer.h"
20 #include "platform/bindings/ScriptWrappable.h"
21 #include "platform/heap/Handle.h" 21 #include "platform/heap/Handle.h"
22 #include "platform/wtf/Compiler.h" 22 #include "platform/wtf/Compiler.h"
23 #include "platform/wtf/Noncopyable.h" 23 #include "platform/wtf/Noncopyable.h"
24 #include "platform/wtf/RefPtr.h" 24 #include "platform/wtf/RefPtr.h"
25 #include "platform/wtf/Vector.h" 25 #include "platform/wtf/Vector.h"
26 #include "platform/wtf/text/WTFString.h" 26 #include "platform/wtf/text/WTFString.h"
27 27
28 namespace blink { 28 namespace blink {
29 29
30 class ExceptionState; 30 class ExceptionState;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 Member<ScriptPromiseResolver> abort_resolver_; 125 Member<ScriptPromiseResolver> abort_resolver_;
126 Member<ScriptPromiseResolver> can_make_payment_resolver_; 126 Member<ScriptPromiseResolver> can_make_payment_resolver_;
127 payments::mojom::blink::PaymentRequestPtr payment_provider_; 127 payments::mojom::blink::PaymentRequestPtr payment_provider_;
128 mojo::Binding<payments::mojom::blink::PaymentRequestClient> client_binding_; 128 mojo::Binding<payments::mojom::blink::PaymentRequestClient> client_binding_;
129 TaskRunnerTimer<PaymentRequest> complete_timer_; 129 TaskRunnerTimer<PaymentRequest> complete_timer_;
130 }; 130 };
131 131
132 } // namespace blink 132 } // namespace blink
133 133
134 #endif // PaymentRequest_h 134 #endif // PaymentRequest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698