| Index: chrome/common/service_process_util_win.cc
 | 
| diff --git a/chrome/common/service_process_util_win.cc b/chrome/common/service_process_util_win.cc
 | 
| index 99cb01d024d64726584d30f17e038af011e83a57..cd0cff9d1144f70a145e6bbef90fa910b722572b 100644
 | 
| --- a/chrome/common/service_process_util_win.cc
 | 
| +++ b/chrome/common/service_process_util_win.cc
 | 
| @@ -4,11 +4,12 @@
 | 
|  
 | 
|  #include "chrome/common/service_process_util.h"
 | 
|  
 | 
| +#include <memory>
 | 
| +
 | 
|  #include "base/callback.h"
 | 
|  #include "base/command_line.h"
 | 
|  #include "base/files/file_path.h"
 | 
|  #include "base/logging.h"
 | 
| -#include "base/memory/scoped_ptr.h"
 | 
|  #include "base/path_service.h"
 | 
|  #include "base/strings/string16.h"
 | 
|  #include "base/strings/utf_string_conversions.h"
 | 
| @@ -109,7 +110,7 @@ bool CheckServiceProcessReady() {
 | 
|  struct ServiceProcessState::StateData {
 | 
|    // An event that is signaled when a service process is ready.
 | 
|    base::win::ScopedHandle ready_event;
 | 
| -  scoped_ptr<ServiceProcessTerminateMonitor> terminate_monitor;
 | 
| +  std::unique_ptr<ServiceProcessTerminateMonitor> terminate_monitor;
 | 
|  };
 | 
|  
 | 
|  void ServiceProcessState::CreateState() {
 | 
| 
 |