| Index: webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.h
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.h b/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.h
|
| index a3aebf8af34f0e5d6f64729364a8f68f92d683d9..7c6287c6eace758c6e4b5b735dc18f4fe8692f44 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.h
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.h
|
| @@ -11,9 +11,8 @@
|
| #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RECEIVER_IMPL_H_
|
| #define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_RECEIVER_IMPL_H_
|
|
|
| -#include <memory>
|
| -
|
| #include "webrtc/base/criticalsection.h"
|
| +#include "webrtc/base/scoped_ptr.h"
|
| #include "webrtc/modules/rtp_rtcp/include/rtp_receiver.h"
|
| #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
|
| #include "webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h"
|
| @@ -76,7 +75,7 @@
|
|
|
| Clock* clock_;
|
| RTPPayloadRegistry* rtp_payload_registry_;
|
| - std::unique_ptr<RTPReceiverStrategy> rtp_media_receiver_;
|
| + rtc::scoped_ptr<RTPReceiverStrategy> rtp_media_receiver_;
|
|
|
| RtpFeedback* cb_rtp_feedback_;
|
|
|
|
|