| 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/content/payment_request.mojom-blink.h" | 11 #include "components/payments/mojom/payment_request.mojom-blink.h" |
| 12 #include "modules/ModulesExport.h" | 12 #include "modules/ModulesExport.h" |
| 13 #include "modules/payments/PaymentCurrencyAmount.h" | 13 #include "modules/payments/PaymentCurrencyAmount.h" |
| 14 #include "platform/heap/Handle.h" | 14 #include "platform/heap/Handle.h" |
| 15 #include "platform/wtf/Noncopyable.h" | 15 #include "platform/wtf/Noncopyable.h" |
| 16 #include "platform/wtf/text/WTFString.h" | 16 #include "platform/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; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 String shipping_option_; | 54 String shipping_option_; |
| 55 String payer_name_; | 55 String payer_name_; |
| 56 String payer_email_; | 56 String payer_email_; |
| 57 String payer_phone_; | 57 String payer_phone_; |
| 58 Member<PaymentCompleter> payment_completer_; | 58 Member<PaymentCompleter> payment_completer_; |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 } // namespace blink | 61 } // namespace blink |
| 62 | 62 |
| 63 #endif // PaymentResponse_h | 63 #endif // PaymentResponse_h |
| OLD | NEW |