| Index: components/security_interstitials/core/controller_client.h
|
| diff --git a/components/security_interstitials/core/controller_client.h b/components/security_interstitials/core/controller_client.h
|
| index 8acbf35458d2165ac36d1044e76b0cb1bc7dd179..cd580ce26297535e30f33d7270dc1717cb0dcbe3 100644
|
| --- a/components/security_interstitials/core/controller_client.h
|
| +++ b/components/security_interstitials/core/controller_client.h
|
| @@ -87,11 +87,12 @@ class ControllerClient {
|
|
|
| virtual void OpenUrlInCurrentTab(const GURL& url) = 0;
|
|
|
| - virtual PrefService* GetPrefService() = 0;
|
| + virtual PrefService* GetPrefService() const = 0;
|
| +
|
| + virtual const std::string& GetApplicationLocale() const = 0;
|
|
|
| protected:
|
| - virtual const std::string& GetApplicationLocale() = 0;
|
| - virtual const std::string GetExtendedReportingPrefName() = 0;
|
| + virtual const std::string GetExtendedReportingPrefName() const = 0;
|
|
|
| private:
|
| std::unique_ptr<MetricsHelper> metrics_helper_;
|
|
|