| Index: mash/task_viewer/task_viewer.cc
|
| diff --git a/mash/task_viewer/task_viewer.cc b/mash/task_viewer/task_viewer.cc
|
| index 867fd6ee6eafc61e1a84063b49010876ac6b74b0..d0e5259b2affc5fcc7c6b40294d1b6a22dfa471f 100644
|
| --- a/mash/task_viewer/task_viewer.cc
|
| +++ b/mash/task_viewer/task_viewer.cc
|
| @@ -206,8 +206,7 @@ class TaskViewerContents : public views::WidgetDelegateView,
|
| }
|
|
|
| void InsertInstance(const shell::Identity& identity, uint32_t pid) {
|
| - instances_.push_back(
|
| - base::WrapUnique(new InstanceInfo(identity, pid)));
|
| + instances_.push_back(base::MakeUnique<InstanceInfo>(identity, pid));
|
| }
|
|
|
| void OnGotCatalogEntries(std::vector<catalog::mojom::EntryPtr> entries) {
|
|
|