Index: webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h |
diff --git a/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h b/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h |
index 6ce643496d0105179869b31fa2b1f4ea43a523d7..d58256c855d94c40a18336d3ac4ee28716e7a013 100644 |
--- a/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h |
+++ b/webrtc/modules/rtp_rtcp/include/rtp_payload_registry.h |
@@ -12,9 +12,9 @@ |
#define WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_PAYLOAD_REGISTRY_H_ |
#include <map> |
+#include <memory> |
#include "webrtc/base/criticalsection.h" |
-#include "webrtc/base/scoped_ptr.h" |
#include "webrtc/modules/rtp_rtcp/source/rtp_receiver_strategy.h" |
#include "webrtc/modules/rtp_rtcp/source/rtp_utility.h" |
@@ -181,7 +181,7 @@ class RTPPayloadRegistry { |
rtc::CriticalSection crit_sect_; |
RtpUtility::PayloadTypeMap payload_type_map_; |
- rtc::scoped_ptr<RTPPayloadStrategy> rtp_payload_strategy_; |
+ std::unique_ptr<RTPPayloadStrategy> rtp_payload_strategy_; |
int8_t red_payload_type_; |
int8_t ulpfec_payload_type_; |
int8_t incoming_payload_type_; |