| Index: components/policy/core/common/cloud/device_management_service.h
|
| diff --git a/components/policy/core/common/cloud/device_management_service.h b/components/policy/core/common/cloud/device_management_service.h
|
| index 56fe07d1bbc11bdcf1b0ca13f52e88ac87a4af1b..16cd6ccd6a9d84d018a79435ab0e617c0241dbbb 100644
|
| --- a/components/policy/core/common/cloud/device_management_service.h
|
| +++ b/components/policy/core/common/cloud/device_management_service.h
|
| @@ -124,7 +124,7 @@ class POLICY_EXPORT DeviceManagementService : public net::URLFetcherDelegate {
|
| };
|
|
|
| explicit DeviceManagementService(scoped_ptr<Configuration> configuration);
|
| - virtual ~DeviceManagementService();
|
| + ~DeviceManagementService() override;
|
|
|
| // The ID of URLFetchers created by the DeviceManagementService. This can be
|
| // used by tests that use a TestURLFetcherFactory to get the pending fetchers
|
| @@ -154,7 +154,7 @@ class POLICY_EXPORT DeviceManagementService : public net::URLFetcherDelegate {
|
| friend class DeviceManagementRequestJobImpl;
|
|
|
| // net::URLFetcherDelegate override.
|
| - virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
|
| + void OnURLFetchComplete(const net::URLFetcher* source) override;
|
|
|
| // Starts processing any queued jobs.
|
| void Initialize();
|
|
|