| Index: components/sync/engine/cycle/sync_cycle_snapshot.cc
|
| diff --git a/components/sync/engine/cycle/sync_cycle_snapshot.cc b/components/sync/engine/cycle/sync_cycle_snapshot.cc
|
| index 765e120e2f07227da2625bfb3e77b1bb6de527f5..fab6c650f57264a14a67ed58f803b5fb994188f6 100644
|
| --- a/components/sync/engine/cycle/sync_cycle_snapshot.cc
|
| +++ b/components/sync/engine/cycle/sync_cycle_snapshot.cc
|
| @@ -95,7 +95,7 @@ std::unique_ptr<base::DictionaryValue> SyncCycleSnapshot::ToValue() const {
|
| num_to_delete_entries_by_type_[i]);
|
|
|
| const std::string model_type = ModelTypeToString(static_cast<ModelType>(i));
|
| - counter_entries->Set(model_type, type_entries.release());
|
| + counter_entries->Set(model_type, std::move(type_entries));
|
| }
|
| value->Set("counter_entries", std::move(counter_entries));
|
| return value;
|
|
|