| Index: webrtc/api/test/peerconnectiontestwrapper.h
|
| diff --git a/webrtc/api/test/peerconnectiontestwrapper.h b/webrtc/api/test/peerconnectiontestwrapper.h
|
| index f744b57c223744415f8b1faa9c76c93da5bec935..7a9bea46b0d4ef0e2136e841970b87255af036d7 100644
|
| --- a/webrtc/api/test/peerconnectiontestwrapper.h
|
| +++ b/webrtc/api/test/peerconnectiontestwrapper.h
|
| @@ -11,6 +11,8 @@
|
| #ifndef WEBRTC_API_TEST_PEERCONNECTIONTESTWRAPPER_H_
|
| #define WEBRTC_API_TEST_PEERCONNECTIONTESTWRAPPER_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "webrtc/api/peerconnectioninterface.h"
|
| #include "webrtc/api/test/fakeaudiocapturemodule.h"
|
| #include "webrtc/api/test/fakeconstraints.h"
|
| @@ -94,7 +96,7 @@ class PeerConnectionTestWrapper
|
| rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface>
|
| peer_connection_factory_;
|
| rtc::scoped_refptr<FakeAudioCaptureModule> fake_audio_capture_module_;
|
| - rtc::scoped_ptr<webrtc::FakeVideoTrackRenderer> renderer_;
|
| + std::unique_ptr<webrtc::FakeVideoTrackRenderer> renderer_;
|
| };
|
|
|
| #endif // WEBRTC_API_TEST_PEERCONNECTIONTESTWRAPPER_H_
|
|
|