| Index: webrtc/p2p/base/stunport.h
|
| diff --git a/webrtc/p2p/base/stunport.h b/webrtc/p2p/base/stunport.h
|
| index a0eba51cd43caabc057ad4518cadda70bff3a18a..cd844aa273ed2f7b3fbfc2109820c20bbf364356 100644
|
| --- a/webrtc/p2p/base/stunport.h
|
| +++ b/webrtc/p2p/base/stunport.h
|
| @@ -11,6 +11,7 @@
|
| #ifndef WEBRTC_P2P_BASE_STUNPORT_H_
|
| #define WEBRTC_P2P_BASE_STUNPORT_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "webrtc/p2p/base/port.h"
|
| @@ -224,7 +225,7 @@ class UDPPort : public Port {
|
| StunRequestManager requests_;
|
| rtc::AsyncPacketSocket* socket_;
|
| int error_;
|
| - rtc::scoped_ptr<AddressResolver> resolver_;
|
| + std::unique_ptr<AddressResolver> resolver_;
|
| bool ready_;
|
| int stun_keepalive_delay_;
|
| int stun_keepalive_lifetime_;
|
|
|