| Index: remoting/protocol/stream_channel_factory.h
|
| diff --git a/remoting/protocol/stream_channel_factory.h b/remoting/protocol/stream_channel_factory.h
|
| index fe4a1e5d94b909a3e4ceca5e52c931f0de38b878..a28b0272beb98f90e95f06b6ab446b29f1aedf85 100644
|
| --- a/remoting/protocol/stream_channel_factory.h
|
| +++ b/remoting/protocol/stream_channel_factory.h
|
| @@ -5,11 +5,11 @@
|
| #ifndef REMOTING_PROTOCOL_STREAM_CHANNEL_FACTORY_H_
|
| #define REMOTING_PROTOCOL_STREAM_CHANNEL_FACTORY_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/callback.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/threading/non_thread_safe.h"
|
|
|
| namespace remoting {
|
| @@ -21,7 +21,7 @@ class StreamChannelFactory : public base::NonThreadSafe {
|
| public:
|
| // TODO(sergeyu): Specify connection error code when channel
|
| // connection fails.
|
| - typedef base::Callback<void(scoped_ptr<P2PStreamSocket>)>
|
| + typedef base::Callback<void(std::unique_ptr<P2PStreamSocket>)>
|
| ChannelCreatedCallback;
|
|
|
| StreamChannelFactory() {}
|
|
|