| Index: remoting/protocol/datagram_channel_factory.h
|
| diff --git a/remoting/protocol/datagram_channel_factory.h b/remoting/protocol/datagram_channel_factory.h
|
| index 2e19fc2f3c93e3d5889c28083c074d185318610f..d82960a796fb9ed1acf2a29f38d895ae1accadd5 100644
|
| --- a/remoting/protocol/datagram_channel_factory.h
|
| +++ b/remoting/protocol/datagram_channel_factory.h
|
| @@ -5,11 +5,11 @@
|
| #ifndef REMOTING_PROTOCOL_DATAGRAM_CHANNEL_FACTORY_H_
|
| #define REMOTING_PROTOCOL_DATAGRAM_CHANNEL_FACTORY_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/callback_forward.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
|
|
| namespace remoting {
|
| namespace protocol {
|
| @@ -18,7 +18,7 @@ class P2PDatagramSocket;
|
|
|
| class DatagramChannelFactory {
|
| public:
|
| - typedef base::Callback<void(scoped_ptr<P2PDatagramSocket>)>
|
| + typedef base::Callback<void(std::unique_ptr<P2PDatagramSocket>)>
|
| ChannelCreatedCallback;
|
|
|
| DatagramChannelFactory() {}
|
|
|