| Index: components/policy/core/common/cloud/cloud_policy_manager.h
|
| diff --git a/components/policy/core/common/cloud/cloud_policy_manager.h b/components/policy/core/common/cloud/cloud_policy_manager.h
|
| index 04d3076fe9b61eb6fd83a974b50dc9ff070bfe44..a8b8e0df3ad42958c27f1bb6ae4230ea793e9258 100644
|
| --- a/components/policy/core/common/cloud/cloud_policy_manager.h
|
| +++ b/components/policy/core/common/cloud/cloud_policy_manager.h
|
| @@ -5,12 +5,12 @@
|
| #ifndef COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_MANAGER_H_
|
| #define COMPONENTS_POLICY_CORE_COMMON_CLOUD_CLOUD_POLICY_MANAGER_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/policy/core/common/cloud/cloud_policy_core.h"
|
| #include "components/policy/core/common/cloud/cloud_policy_store.h"
|
| #include "components/policy/core/common/cloud/component_cloud_policy_service.h"
|
| @@ -105,7 +105,7 @@ class POLICY_EXPORT CloudPolicyManager
|
| void OnRefreshComplete(bool success);
|
|
|
| CloudPolicyCore core_;
|
| - scoped_ptr<ComponentCloudPolicyService> component_policy_service_;
|
| + std::unique_ptr<ComponentCloudPolicyService> component_policy_service_;
|
|
|
| // Whether there's a policy refresh operation pending, in which case all
|
| // policy update notifications are deferred until after it completes.
|
|
|