| Index: sync/syncable/model_type.cc
|
| diff --git a/sync/syncable/model_type.cc b/sync/syncable/model_type.cc
|
| index 9219af247bcc8d5366857cef228df596ddcc14d9..bf491045185cfa7f10f1867b5dc0fdf8134429d2 100644
|
| --- a/sync/syncable/model_type.cc
|
| +++ b/sync/syncable/model_type.cc
|
| @@ -652,8 +652,8 @@ ModelTypeSet ModelTypeSetFromString(const std::string& model_types_string) {
|
| return model_types;
|
| }
|
|
|
| -scoped_ptr<base::ListValue> ModelTypeSetToValue(ModelTypeSet model_types) {
|
| - scoped_ptr<base::ListValue> value(new base::ListValue());
|
| +std::unique_ptr<base::ListValue> ModelTypeSetToValue(ModelTypeSet model_types) {
|
| + std::unique_ptr<base::ListValue> value(new base::ListValue());
|
| for (ModelTypeSet::Iterator it = model_types.First(); it.Good(); it.Inc()) {
|
| value->AppendString(ModelTypeToString(it.Get()));
|
| }
|
|
|