| 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_REQUEST_STATE_H_ | 5 #ifndef COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_STATE_H_ |
| 6 #define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_STATE_H_ | 6 #define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_STATE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
| 14 #include "components/payments/content/payment_request.mojom.h" | |
| 15 #include "components/payments/content/payment_response_helper.h" | 14 #include "components/payments/content/payment_response_helper.h" |
| 15 #include "components/payments/mojom/payment_request.mojom.h" |
| 16 | 16 |
| 17 namespace i18n { | 17 namespace i18n { |
| 18 namespace addressinput { | 18 namespace addressinput { |
| 19 class Storage; | 19 class Storage; |
| 20 class Source; | 20 class Source; |
| 21 } // namespace addressinput | 21 } // namespace addressinput |
| 22 } // namespace i18n | 22 } // namespace i18n |
| 23 | 23 |
| 24 namespace autofill { | 24 namespace autofill { |
| 25 class AutofillProfile; | 25 class AutofillProfile; |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 std::unique_ptr<PaymentResponseHelper> response_helper_; | 192 std::unique_ptr<PaymentResponseHelper> response_helper_; |
| 193 | 193 |
| 194 base::ObserverList<Observer> observers_; | 194 base::ObserverList<Observer> observers_; |
| 195 | 195 |
| 196 DISALLOW_COPY_AND_ASSIGN(PaymentRequestState); | 196 DISALLOW_COPY_AND_ASSIGN(PaymentRequestState); |
| 197 }; | 197 }; |
| 198 | 198 |
| 199 } // namespace payments | 199 } // namespace payments |
| 200 | 200 |
| 201 #endif // COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_STATE_H_ | 201 #endif // COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_STATE_H_ |
| OLD | NEW |