Index: webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h |
diff --git a/webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h b/webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h |
index 207e749a02a00560b3973a643b14f66e7e8bf273..a76e5e06470eefe2f382bf6e5c38f72954416174 100644 |
--- a/webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h |
+++ b/webrtc/modules/rtp_rtcp/include/remote_ntp_time_estimator.h |
@@ -11,9 +11,8 @@ |
#ifndef WEBRTC_MODULES_RTP_RTCP_INCLUDE_REMOTE_NTP_TIME_ESTIMATOR_H_ |
#define WEBRTC_MODULES_RTP_RTCP_INCLUDE_REMOTE_NTP_TIME_ESTIMATOR_H_ |
-#include <memory> |
- |
#include "webrtc/base/constructormagic.h" |
+#include "webrtc/base/scoped_ptr.h" |
#include "webrtc/system_wrappers/include/rtp_to_ntp.h" |
namespace webrtc { |
@@ -42,7 +41,7 @@ |
private: |
Clock* clock_; |
- std::unique_ptr<TimestampExtrapolator> ts_extrapolator_; |
+ rtc::scoped_ptr<TimestampExtrapolator> ts_extrapolator_; |
RtcpList rtcp_list_; |
int64_t last_timing_log_ms_; |
RTC_DISALLOW_COPY_AND_ASSIGN(RemoteNtpTimeEstimator); |