| Index: base/process/process_metrics.cc | 
| diff --git a/base/process/process_metrics.cc b/base/process/process_metrics.cc | 
| index a21891d9121195422bd81e97decce2b041aefd04..0b387264315c0790a201007fa4b744777157d245 100644 | 
| --- a/base/process/process_metrics.cc | 
| +++ b/base/process/process_metrics.cc | 
| @@ -31,8 +31,8 @@ SystemMetrics SystemMetrics::Sample() { | 
| return system_metrics; | 
| } | 
|  | 
| -scoped_ptr<Value> SystemMetrics::ToValue() const { | 
| -  scoped_ptr<DictionaryValue> res(new DictionaryValue()); | 
| +std::unique_ptr<Value> SystemMetrics::ToValue() const { | 
| +  std::unique_ptr<DictionaryValue> res(new DictionaryValue()); | 
|  | 
| res->SetInteger("committed_memory", static_cast<int>(committed_memory_)); | 
| #if defined(OS_LINUX) || defined(OS_ANDROID) | 
|  |