| Index: components/policy/core/browser/browser_policy_connector_ios.mm
 | 
| diff --git a/components/policy/core/browser/browser_policy_connector_ios.mm b/components/policy/core/browser/browser_policy_connector_ios.mm
 | 
| index 51d41c57e1288d7df3888b169abc6d59a6ed37ff..247183f5d42044127857be589298ef2b5a11af1a 100644
 | 
| --- a/components/policy/core/browser/browser_policy_connector_ios.mm
 | 
| +++ b/components/policy/core/browser/browser_policy_connector_ios.mm
 | 
| @@ -22,17 +22,15 @@ class DeviceManagementServiceConfiguration
 | 
|    explicit DeviceManagementServiceConfiguration(const std::string& user_agent)
 | 
|        : user_agent_(user_agent) {}
 | 
|  
 | 
| -  virtual ~DeviceManagementServiceConfiguration() {}
 | 
| +  ~DeviceManagementServiceConfiguration() override {}
 | 
|  
 | 
| -  virtual std::string GetServerUrl() override {
 | 
| +  std::string GetServerUrl() override {
 | 
|      return BrowserPolicyConnector::GetDeviceManagementUrl();
 | 
|    }
 | 
|  
 | 
| -  virtual std::string GetAgentParameter() override {
 | 
| -    return user_agent_;
 | 
| -  }
 | 
| +  std::string GetAgentParameter() override { return user_agent_; }
 | 
|  
 | 
| -  virtual std::string GetPlatformParameter() override {
 | 
| +  std::string GetPlatformParameter() override {
 | 
|      std::string os_name = base::SysInfo::OperatingSystemName();
 | 
|      std::string os_hardware = base::SysInfo::OperatingSystemArchitecture();
 | 
|      std::string os_version("-");
 | 
| 
 |