| Index: components/policy/core/common/mac_util.h
|
| diff --git a/components/policy/core/common/mac_util.h b/components/policy/core/common/mac_util.h
|
| index bafb7b2a851de507b4ad35a5b6f78b1132cd7047..f5b5fb7f7aacc812094714c3baa13d91bd63a8c2 100644
|
| --- a/components/policy/core/common/mac_util.h
|
| +++ b/components/policy/core/common/mac_util.h
|
| @@ -7,7 +7,8 @@
|
|
|
| #include <CoreFoundation/CoreFoundation.h>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "components/policy/policy_export.h"
|
|
|
| // This file contains utilities shared by both Mac OS X and iOS.
|
| @@ -24,7 +25,7 @@ namespace policy {
|
| // NSDictionary is toll-free bridged to CFDictionaryRef, which is a
|
| // CFPropertyListRef, so it can also be passed directly here. Same for the
|
| // other NS* classes that map to CF* properties.
|
| -POLICY_EXPORT scoped_ptr<base::Value> PropertyToValue(
|
| +POLICY_EXPORT std::unique_ptr<base::Value> PropertyToValue(
|
| CFPropertyListRef property);
|
|
|
| } // namespace policy
|
|
|