| 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_CORE_AUTOFILL_PAYMENT_INSTRUMENT_H_ | 5 #ifndef COMPONENTS_PAYMENTS_CORE_AUTOFILL_PAYMENT_INSTRUMENT_H_ |
| 6 #define COMPONENTS_PAYMENTS_CORE_AUTOFILL_PAYMENT_INSTRUMENT_H_ | 6 #define COMPONENTS_PAYMENTS_CORE_AUTOFILL_PAYMENT_INSTRUMENT_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 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 "components/autofill/core/browser/credit_card.h" | 13 #include "components/autofill/core/browser/credit_card.h" |
| 14 #include "components/payments/core/payment_instrument.h" | 14 #include "components/payments/core/payment_instrument.h" |
| 15 | 15 |
| 16 namespace autofill { | 16 namespace autofill { |
| 17 class AutofillProfile; | 17 class AutofillProfile; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace payments { | 20 namespace payments { |
| 21 | 21 |
| 22 // Represents an Autofill/Payments credit card form of payment in Payment | 22 // Represents an Autofill/Payments credit card form of payment in Payment |
| 23 // Request. | 23 // Request. |
| 24 class AutofillPaymentInstrument : public PaymentInstrument { | 24 class AutofillPaymentInstrument : public PaymentInstrument { |
| 25 public: | 25 public: |
| 26 // |billing_profiles| is owned by the caller and should outlive this object. | 26 // |billing_profiles| is owned by the caller and should outlive this object. |
| 27 AutofillPaymentInstrument( | 27 AutofillPaymentInstrument( |
| 28 const std::string& method_name, | 28 const std::string& method_name, |
| 29 const autofill::CreditCard& credit_card, | 29 const autofill::CreditCard& card, |
| 30 const std::vector<autofill::AutofillProfile*>& billing_profiles, | 30 const std::vector<autofill::AutofillProfile*>& billing_profiles, |
| 31 const std::string& app_locale); | 31 const std::string& app_locale); |
| 32 ~AutofillPaymentInstrument() override; | 32 ~AutofillPaymentInstrument() override; |
| 33 | 33 |
| 34 // PaymentInstrument: | 34 // PaymentInstrument: |
| 35 void InvokePaymentApp(PaymentInstrument::Delegate* delegate) override; | 35 void InvokePaymentApp(PaymentInstrument::Delegate* delegate) override; |
| 36 bool IsValid() override; |
| 36 | 37 |
| 37 private: | 38 private: |
| 39 // A copy of the card is owned by this object. |
| 38 const autofill::CreditCard credit_card_; | 40 const autofill::CreditCard credit_card_; |
| 41 // Not owned by this object, should outlive this. |
| 39 const std::vector<autofill::AutofillProfile*>& billing_profiles_; | 42 const std::vector<autofill::AutofillProfile*>& billing_profiles_; |
| 43 |
| 40 const std::string app_locale_; | 44 const std::string app_locale_; |
| 41 | 45 |
| 42 DISALLOW_COPY_AND_ASSIGN(AutofillPaymentInstrument); | 46 DISALLOW_COPY_AND_ASSIGN(AutofillPaymentInstrument); |
| 43 }; | 47 }; |
| 44 | 48 |
| 45 } // namespace payments | 49 } // namespace payments |
| 46 | 50 |
| 47 #endif // COMPONENTS_PAYMENTS_CORE_AUTOFILL_PAYMENT_INSTRUMENT_H_ | 51 #endif // COMPONENTS_PAYMENTS_CORE_AUTOFILL_PAYMENT_INSTRUMENT_H_ |
| OLD | NEW |