| 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 PaymentResponse_h | 5 #ifndef PaymentResponse_h |
| 6 #define PaymentResponse_h | 6 #define PaymentResponse_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 "components/payments/payment_request.mojom-blink.h" |
| 11 #include "modules/ModulesExport.h" | 12 #include "modules/ModulesExport.h" |
| 12 #include "modules/payments/PaymentCurrencyAmount.h" | 13 #include "modules/payments/PaymentCurrencyAmount.h" |
| 13 #include "platform/heap/Handle.h" | 14 #include "platform/heap/Handle.h" |
| 14 #include "public/platform/modules/payments/payment_request.mojom-blink.h" | |
| 15 #include "wtf/Noncopyable.h" | 15 #include "wtf/Noncopyable.h" |
| 16 #include "wtf/text/WTFString.h" | 16 #include "wtf/text/WTFString.h" |
| 17 | 17 |
| 18 namespace blink { | 18 namespace blink { |
| 19 | 19 |
| 20 class ExceptionState; | 20 class ExceptionState; |
| 21 class PaymentAddress; | 21 class PaymentAddress; |
| 22 class PaymentCompleter; | 22 class PaymentCompleter; |
| 23 class ScriptState; | 23 class ScriptState; |
| 24 | 24 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 53 String m_shippingOption; | 53 String m_shippingOption; |
| 54 String m_payerName; | 54 String m_payerName; |
| 55 String m_payerEmail; | 55 String m_payerEmail; |
| 56 String m_payerPhone; | 56 String m_payerPhone; |
| 57 Member<PaymentCompleter> m_paymentCompleter; | 57 Member<PaymentCompleter> m_paymentCompleter; |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 } // namespace blink | 60 } // namespace blink |
| 61 | 61 |
| 62 #endif // PaymentResponse_h | 62 #endif // PaymentResponse_h |
| OLD | NEW |