| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_ | 5 #ifndef COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_ |
| 6 #define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_ | 6 #define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "components/payments/content/payment_request.mojom.h" | |
| 10 #include "components/payments/core/payment_instrument.h" | 9 #include "components/payments/core/payment_instrument.h" |
| 10 #include "components/payments/mojom/payment_request.mojom.h" |
| 11 | 11 |
| 12 namespace autofill { | 12 namespace autofill { |
| 13 class AutofillProfile; | 13 class AutofillProfile; |
| 14 } // namespace autofill | 14 } // namespace autofill |
| 15 | 15 |
| 16 namespace payments { | 16 namespace payments { |
| 17 | 17 |
| 18 class PaymentRequestSpec; | 18 class PaymentRequestSpec; |
| 19 | 19 |
| 20 // TODO(sebsg): Asynchronously normalize the billing and shipping addresses | 20 // TODO(sebsg): Asynchronously normalize the billing and shipping addresses |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 // Not owned, can be null (dependent on the spec). | 62 // Not owned, can be null (dependent on the spec). |
| 63 autofill::AutofillProfile* selected_shipping_profile_; | 63 autofill::AutofillProfile* selected_shipping_profile_; |
| 64 autofill::AutofillProfile* selected_contact_profile_; | 64 autofill::AutofillProfile* selected_contact_profile_; |
| 65 | 65 |
| 66 DISALLOW_COPY_AND_ASSIGN(PaymentResponseHelper); | 66 DISALLOW_COPY_AND_ASSIGN(PaymentResponseHelper); |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 } // namespace payments | 69 } // namespace payments |
| 70 | 70 |
| 71 #endif // COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_ | 71 #endif // COMPONENTS_PAYMENTS_CONTENT_PAYMENT_RESPONSE_HELPER_H_ |
| OLD | NEW |