| Index: remoting/host/host_extension.h
|
| diff --git a/remoting/host/host_extension.h b/remoting/host/host_extension.h
|
| index 41158e6e965376f86634f8a05fea9e0e3c0d6bf3..07c5b775a217b9aec1af5aed88bd933a47ccbf1a 100644
|
| --- a/remoting/host/host_extension.h
|
| +++ b/remoting/host/host_extension.h
|
| @@ -5,9 +5,9 @@
|
| #ifndef REMOTING_HOST_HOST_EXTENSION_H_
|
| #define REMOTING_HOST_HOST_EXTENSION_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
|
|
| namespace remoting {
|
|
|
| @@ -36,7 +36,7 @@ class HostExtension {
|
| // |client_session_control| may be used to e.g. disconnect the session.
|
| // |client_stub| may be used to send messages to the session.
|
| // Both interfaces are valid for the lifetime of the |HostExtensionSession|.
|
| - virtual scoped_ptr<HostExtensionSession> CreateExtensionSession(
|
| + virtual std::unique_ptr<HostExtensionSession> CreateExtensionSession(
|
| ClientSessionControl* client_session_control,
|
| protocol::ClientStub* client_stub) = 0;
|
| };
|
|
|