| Index: chrome/browser/performance_monitor/performance_monitor.cc
|
| diff --git a/chrome/browser/performance_monitor/performance_monitor.cc b/chrome/browser/performance_monitor/performance_monitor.cc
|
| index 0aab66aff7567f6b93ca9f64e96e1a908dca4b20..84739978048248b1fec9bee8edef928f41c4363c 100644
|
| --- a/chrome/browser/performance_monitor/performance_monitor.cc
|
| +++ b/chrome/browser/performance_monitor/performance_monitor.cc
|
| @@ -5,6 +5,7 @@
|
| #include "chrome/browser/performance_monitor/performance_monitor.h"
|
|
|
| #include <stddef.h>
|
| +#include <utility>
|
|
|
| #include "base/memory/singleton.h"
|
| #include "base/process/process_iterator.h"
|
| @@ -169,7 +170,8 @@ void PerformanceMonitor::GatherMetricsMapOnIOThread(
|
| BrowserThread::PostTask(
|
| BrowserThread::UI, FROM_HERE,
|
| base::Bind(&PerformanceMonitor::MarkProcessesAsAliveOnUIThread,
|
| - base::Unretained(this), base::Passed(process_data_list.Pass()),
|
| + base::Unretained(this),
|
| + base::Passed(std::move(process_data_list)),
|
| current_update_sequence));
|
| }
|
|
|
|
|