| Index: remoting/host/win/host_service.h
|
| diff --git a/remoting/host/win/host_service.h b/remoting/host/win/host_service.h
|
| index 34629edeb41989ad4d6853c1df688f2ce5167bb0..de3f3a0486b9eb2370e915e0c053b37a0d5ae8d4 100644
|
| --- a/remoting/host/win/host_service.h
|
| +++ b/remoting/host/win/host_service.h
|
| @@ -9,10 +9,10 @@
|
| #include <stdint.h>
|
|
|
| #include <list>
|
| +#include <memory>
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/singleton.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/synchronization/waitable_event.h"
|
| @@ -104,7 +104,7 @@ class HostService : public WtsTerminalMonitor {
|
| // The list of observers receiving session notifications.
|
| std::list<RegisteredObserver> observers_;
|
|
|
| - scoped_ptr<DaemonProcess> daemon_process_;
|
| + std::unique_ptr<DaemonProcess> daemon_process_;
|
|
|
| // Service message loop. |main_task_runner_| must be valid as long as the
|
| // Control+C or service notification handler is registered.
|
|
|