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 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" | 10 #include "bindings/core/v8/ScriptWrappable.h" |
11 #include "core/events/EventTarget.h" | 11 #include "core/events/EventTarget.h" |
12 #include "modules/ModulesExport.h" | 12 #include "modules/ModulesExport.h" |
13 #include "modules/payments/PaymentCompleter.h" | 13 #include "modules/payments/PaymentCompleter.h" |
14 #include "modules/payments/PaymentDetails.h" | 14 #include "modules/payments/PaymentDetails.h" |
15 #include "modules/payments/PaymentOptions.h" | 15 #include "modules/payments/PaymentOptions.h" |
16 #include "mojo/public/cpp/bindings/binding.h" | 16 #include "mojo/public/cpp/bindings/binding.h" |
17 #include "platform/heap/Handle.h" | 17 #include "platform/heap/Handle.h" |
18 #include "public/platform/modules/payments/payment_request.mojom-wtf.h" | 18 #include "public/platform/modules/payments/payment_request.mojom-wtf.h" |
19 #include "wtf/Compiler.h" | |
please use gerrit instead
2016/04/12 20:42:11
btw, let's not alter includes in this patch. This
| |
20 #include "wtf/Noncopyable.h" | 19 #include "wtf/Noncopyable.h" |
21 #include "wtf/RefPtr.h" | 20 #include "wtf/RefPtr.h" |
22 #include "wtf/Vector.h" | 21 #include "wtf/Vector.h" |
23 #include "wtf/text/WTFString.h" | 22 #include "wtf/text/WTFString.h" |
24 | 23 |
25 namespace blink { | 24 namespace blink { |
26 | 25 |
27 class ExceptionState; | 26 class ExceptionState; |
28 class ScriptPromiseResolver; | 27 class ScriptPromiseResolver; |
29 class ScriptState; | 28 class ScriptState; |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
81 String m_shippingOption; | 80 String m_shippingOption; |
82 Member<ScriptPromiseResolver> m_showResolver; | 81 Member<ScriptPromiseResolver> m_showResolver; |
83 Member<ScriptPromiseResolver> m_completeResolver; | 82 Member<ScriptPromiseResolver> m_completeResolver; |
84 mojom::wtf::PaymentRequestPtr m_paymentProvider; | 83 mojom::wtf::PaymentRequestPtr m_paymentProvider; |
85 mojo::Binding<mojom::wtf::PaymentRequestClient> m_clientBinding; | 84 mojo::Binding<mojom::wtf::PaymentRequestClient> m_clientBinding; |
86 }; | 85 }; |
87 | 86 |
88 } // namespace blink | 87 } // namespace blink |
89 | 88 |
90 #endif // PaymentRequest_h | 89 #endif // PaymentRequest_h |
OLD | NEW |