| Index: base/process/process_metrics.cc
|
| diff --git a/base/process/process_metrics.cc b/base/process/process_metrics.cc
|
| index 6d99383cdf69d17c298c21f9dc79f51585c2cd29..f4a3ea1ac0577373a28635dad6ff943560f7344c 100644
|
| --- a/base/process/process_metrics.cc
|
| +++ b/base/process/process_metrics.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "base/process/process_metrics.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/logging.h"
|
| #include "base/values.h"
|
|
|
| @@ -40,7 +42,7 @@ scoped_ptr<Value> SystemMetrics::ToValue() const {
|
| res->Set("swapinfo", swap_info_.ToValue());
|
| #endif
|
|
|
| - return res.Pass();
|
| + return std::move(res);
|
| }
|
|
|
| ProcessMetrics* ProcessMetrics::CreateCurrentProcessMetrics() {
|
|
|