| Index: components/policy/core/common/policy_service_impl.cc
|
| diff --git a/components/policy/core/common/policy_service_impl.cc b/components/policy/core/common/policy_service_impl.cc
|
| index 3f8650b3e405aebe36d82c3e2834321b203bd6e4..c6116c7119edc3b53d89c7f245b06fbef5b87552 100644
|
| --- a/components/policy/core/common/policy_service_impl.cc
|
| +++ b/components/policy/core/common/policy_service_impl.cc
|
| @@ -46,7 +46,8 @@ void FixDeprecatedPolicies(PolicyMap* policies) {
|
| // first, and then only policies with those exact attributes are merged.
|
| PolicyMap::Entry current_priority; // Defaults to the lowest priority.
|
| PolicySource inherited_source = POLICY_SOURCE_ENTERPRISE_DEFAULT;
|
| - scoped_ptr<base::DictionaryValue> proxy_settings(new base::DictionaryValue);
|
| + std::unique_ptr<base::DictionaryValue> proxy_settings(
|
| + new base::DictionaryValue);
|
| for (size_t i = 0; i < arraysize(kProxyPolicies); ++i) {
|
| const PolicyMap::Entry* entry = policies->Get(kProxyPolicies[i]);
|
| if (entry) {
|
|
|