| Index: components/policy/core/common/external_data_fetcher.h
|
| diff --git a/components/policy/core/common/external_data_fetcher.h b/components/policy/core/common/external_data_fetcher.h
|
| index 25ea41a263a57815774aa246d5d1092323c1c854..0c014e794bb4efe806883250e5a35944e562d542 100644
|
| --- a/components/policy/core/common/external_data_fetcher.h
|
| +++ b/components/policy/core/common/external_data_fetcher.h
|
| @@ -5,10 +5,10 @@
|
| #ifndef COMPONENTS_POLICY_CORE_COMMON_EXTERNAL_DATA_FETCHER_H_
|
| #define COMPONENTS_POLICY_CORE_COMMON_EXTERNAL_DATA_FETCHER_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/callback_forward.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "components/policy/policy_export.h"
|
|
|
| @@ -20,7 +20,7 @@ class ExternalDataManager;
|
| // data for a policy.
|
| class POLICY_EXPORT ExternalDataFetcher {
|
| public:
|
| - typedef base::Callback<void(scoped_ptr<std::string>)> FetchCallback;
|
| + typedef base::Callback<void(std::unique_ptr<std::string>)> FetchCallback;
|
|
|
| // This instance's Fetch() method will instruct the |manager| to retrieve the
|
| // external data referenced by the given |policy|.
|
|
|