| Index: components/payments/content/payment_request_delegate.h
|
| diff --git a/components/payments/content/payment_request_delegate.h b/components/payments/content/payment_request_delegate.h
|
| index f797530c5c49b8ded21e664baed145a16cd2430c..46faaaea93a490a31cb4166e4421aaef4b79e028 100644
|
| --- a/components/payments/content/payment_request_delegate.h
|
| +++ b/components/payments/content/payment_request_delegate.h
|
| @@ -5,6 +5,8 @@
|
| #ifndef COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_DELEGATE_H_
|
| #define COMPONENTS_PAYMENTS_CONTENT_PAYMENT_REQUEST_DELEGATE_H_
|
|
|
| +#include <string>
|
| +
|
| namespace autofill {
|
| class PersonalDataManager;
|
| }
|
| @@ -27,6 +29,8 @@ class PaymentRequestDelegate {
|
| // Gets the PersonalDataManager associated with this PaymentRequest flow.
|
| // Cannot be null.
|
| virtual autofill::PersonalDataManager* GetPersonalDataManager() = 0;
|
| +
|
| + virtual const std::string& GetApplicationLocale() const = 0;
|
| };
|
|
|
| } // namespace payments
|
|
|