| Index: chrome/browser/chromeos/policy/auto_enrollment_client.h
|
| diff --git a/chrome/browser/chromeos/policy/auto_enrollment_client.h b/chrome/browser/chromeos/policy/auto_enrollment_client.h
|
| index d42c1a58ed0cc1da693b880c7b51e4d8118f438f..91e504da9d1315569c30e88011aa35a008611253 100644
|
| --- a/chrome/browser/chromeos/policy/auto_enrollment_client.h
|
| +++ b/chrome/browser/chromeos/policy/auto_enrollment_client.h
|
| @@ -7,12 +7,12 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/callback.h"
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/time/time.h"
|
| #include "components/policy/core/common/cloud/cloud_policy_constants.h"
|
| #include "net/base/network_change_notifier.h"
|
| @@ -195,7 +195,7 @@ class AutoEnrollmentClient
|
|
|
| // Used to communicate with the device management service.
|
| DeviceManagementService* device_management_service_;
|
| - scoped_ptr<DeviceManagementRequestJob> request_job_;
|
| + std::unique_ptr<DeviceManagementRequestJob> request_job_;
|
|
|
| // PrefService where the protocol's results are cached.
|
| PrefService* local_state_;
|
|
|