| Index: components/policy/core/common/cloud/mock_cloud_external_data_manager.h
|
| diff --git a/components/policy/core/common/cloud/mock_cloud_external_data_manager.h b/components/policy/core/common/cloud/mock_cloud_external_data_manager.h
|
| index 434e54bd6f3bc3ce0f31a7235d382a9fd082ef89..0cceb80fb9e12a9c1352ddcff12341d87a56ff88 100644
|
| --- a/components/policy/core/common/cloud/mock_cloud_external_data_manager.h
|
| +++ b/components/policy/core/common/cloud/mock_cloud_external_data_manager.h
|
| @@ -5,11 +5,11 @@
|
| #ifndef COMPONENTS_POLICY_CORE_COMMON_CLOUD_MOCK_CLOUD_EXTERNAL_DATA_MANAGER_H_
|
| #define COMPONENTS_POLICY_CORE_COMMON_CLOUD_MOCK_CLOUD_EXTERNAL_DATA_MANAGER_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "components/policy/core/common/cloud/cloud_external_data_manager.h"
|
| #include "components/policy/core/common/external_data_fetcher.h"
|
| #include "testing/gmock/include/gmock/gmock.h"
|
| @@ -33,7 +33,7 @@ class MockCloudExternalDataManager : public CloudExternalDataManager {
|
| MOCK_METHOD2(Fetch, void(const std::string&,
|
| const ExternalDataFetcher::FetchCallback&));
|
|
|
| - scoped_ptr<ExternalDataFetcher> CreateExternalDataFetcher(
|
| + std::unique_ptr<ExternalDataFetcher> CreateExternalDataFetcher(
|
| const std::string& policy);
|
|
|
| private:
|
|
|