| Index: components/autofill/core/browser/autofill_client.h
|
| diff --git a/components/autofill/core/browser/autofill_client.h b/components/autofill/core/browser/autofill_client.h
|
| index 9d651ba23eee64ae92329a1aaa94fac1c012e1c5..a6e5d002267bb702850e89e070dbc412ce32e1f5 100644
|
| --- a/components/autofill/core/browser/autofill_client.h
|
| +++ b/components/autofill/core/browser/autofill_client.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_
|
| #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_
|
|
|
| +#include <string>
|
| #include <vector>
|
|
|
| #include "base/callback_forward.h"
|
| @@ -192,6 +193,9 @@ class AutofillClient {
|
|
|
| // If the context is secure.
|
| virtual bool IsContextSecure(const GURL& form_origin) = 0;
|
| +
|
| + // Returns the application locale.
|
| + virtual const std::string& GetApplicationLocale() = 0;
|
| };
|
|
|
| } // namespace autofill
|
|
|