| Index: chrome/test/chromedriver/chrome/geolocation_override_manager.h
|
| diff --git a/chrome/test/chromedriver/chrome/geolocation_override_manager.h b/chrome/test/chromedriver/chrome/geolocation_override_manager.h
|
| index 151bb13586535856b586f777399a68ae37e201de..199e68002e141508c7fe538361bde6801579fb5b 100644
|
| --- a/chrome/test/chromedriver/chrome/geolocation_override_manager.h
|
| +++ b/chrome/test/chromedriver/chrome/geolocation_override_manager.h
|
| @@ -25,15 +25,15 @@ class Status;
|
| class GeolocationOverrideManager : public DevToolsEventListener {
|
| public:
|
| explicit GeolocationOverrideManager(DevToolsClient* client);
|
| - virtual ~GeolocationOverrideManager();
|
| + ~GeolocationOverrideManager() override;
|
|
|
| Status OverrideGeolocation(const Geoposition& geoposition);
|
|
|
| // Overridden from DevToolsEventListener:
|
| - virtual Status OnConnected(DevToolsClient* client) override;
|
| - virtual Status OnEvent(DevToolsClient* client,
|
| - const std::string& method,
|
| - const base::DictionaryValue& params) override;
|
| + Status OnConnected(DevToolsClient* client) override;
|
| + Status OnEvent(DevToolsClient* client,
|
| + const std::string& method,
|
| + const base::DictionaryValue& params) override;
|
|
|
| private:
|
| Status ApplyOverrideIfNeeded();
|
|
|