| Index: remoting/protocol/transport.h
|
| diff --git a/remoting/protocol/transport.h b/remoting/protocol/transport.h
|
| index c9f24d36fa9ed8363cb7c3a27adb2c6ca0c45f89..8512d0bfc1c1a8661b8524cc825fe89824e184f1 100644
|
| --- a/remoting/protocol/transport.h
|
| +++ b/remoting/protocol/transport.h
|
| @@ -5,11 +5,11 @@
|
| #ifndef REMOTING_PROTOCOL_TRANSPORT_H_
|
| #define REMOTING_PROTOCOL_TRANSPORT_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/callback_forward.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/threading/non_thread_safe.h"
|
| #include "net/base/ip_endpoint.h"
|
| #include "remoting/protocol/errors.h"
|
| @@ -58,7 +58,7 @@ struct TransportRoute {
|
| // Implementations should provide other methods to send and receive data.
|
| class Transport {
|
| public:
|
| - typedef base::Callback<void(scoped_ptr<buzz::XmlElement> transport_info)>
|
| + typedef base::Callback<void(std::unique_ptr<buzz::XmlElement> transport_info)>
|
| SendTransportInfoCallback;
|
|
|
| virtual ~Transport() {}
|
|
|