| Index: components/policy/core/common/cloud/device_management_service.cc
|
| diff --git a/components/policy/core/common/cloud/device_management_service.cc b/components/policy/core/common/cloud/device_management_service.cc
|
| index b05cda75a2b61a015f03fb2818095c5c81dbff76..50aa706b05bcacb4db2c2a4264f74363d6743a14 100644
|
| --- a/components/policy/core/common/cloud/device_management_service.cc
|
| +++ b/components/policy/core/common/cloud/device_management_service.cc
|
| @@ -142,7 +142,7 @@ class DeviceManagementRequestJobImpl : public DeviceManagementRequestJob {
|
| const std::string& platform_parameter,
|
| DeviceManagementService* service,
|
| const scoped_refptr<net::URLRequestContextGetter>& request_context);
|
| - virtual ~DeviceManagementRequestJobImpl();
|
| + ~DeviceManagementRequestJobImpl() override;
|
|
|
| // Handles the URL request response.
|
| void HandleResponse(const net::URLRequestStatus& status,
|
| @@ -166,7 +166,7 @@ class DeviceManagementRequestJobImpl : public DeviceManagementRequestJob {
|
|
|
| protected:
|
| // DeviceManagementRequestJob:
|
| - virtual void Run() override;
|
| + void Run() override;
|
|
|
| private:
|
| // Invokes the callback with the given error code.
|
|
|