| Index: chrome/browser/ui/webui/options/sync_setup_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/sync_setup_handler.cc b/chrome/browser/ui/webui/options/sync_setup_handler.cc
|
| index 1caaea05d4572363466203f7cd281c4c12baa74a..32fa4578add0b5d89b136431046c3021e658e0ad 100644
|
| --- a/chrome/browser/ui/webui/options/sync_setup_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/sync_setup_handler.cc
|
| @@ -94,7 +94,7 @@ SyncConfigInfo::SyncConfigInfo()
|
| SyncConfigInfo::~SyncConfigInfo() {}
|
|
|
| bool GetConfiguration(const std::string& json, SyncConfigInfo* config) {
|
| - scoped_ptr<base::Value> parsed_value = base::JSONReader::Read(json);
|
| + std::unique_ptr<base::Value> parsed_value = base::JSONReader::Read(json);
|
| base::DictionaryValue* result;
|
| if (!parsed_value || !parsed_value->GetAsDictionary(&result)) {
|
| DLOG(ERROR) << "GetConfiguration() not passed a Dictionary";
|
|
|