| Index: components/user_manager/known_user.cc
|
| diff --git a/components/user_manager/known_user.cc b/components/user_manager/known_user.cc
|
| index 8be385cbf043ec31d6f8ede85a90d67dbb432b75..19fc5d97fd76f62098c94d85c2f93fa62becd5e2 100644
|
| --- a/components/user_manager/known_user.cc
|
| +++ b/components/user_manager/known_user.cc
|
| @@ -6,8 +6,9 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/logging.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/values.h"
|
| #include "components/prefs/pref_registry_simple.h"
|
| #include "components/prefs/scoped_user_pref_update.h"
|
| @@ -133,7 +134,7 @@ void UpdatePrefs(const AccountId& account_id,
|
| }
|
| }
|
| }
|
| - scoped_ptr<base::DictionaryValue> new_value(new base::DictionaryValue());
|
| + std::unique_ptr<base::DictionaryValue> new_value(new base::DictionaryValue());
|
| new_value->MergeDictionary(&values);
|
| UpdateIdentity(account_id, *new_value);
|
| update->Append(new_value.release());
|
|
|