Index: webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc |
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc |
index 8817d4d3e83c7c7b1069c959c57f172e6c4c031f..9a5d4714a199c89c6ffaf269a07291d09bdacdd8 100644 |
--- a/webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc |
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_sender_unittest.cc |
@@ -7,8 +7,6 @@ |
* in the file PATENTS. All contributing project authors may |
* be found in the AUTHORS file in the root of the source tree. |
*/ |
- |
-#include <memory> |
#include "testing/gmock/include/gmock/gmock.h" |
#include "testing/gtest/include/gtest/gtest.h" |
@@ -258,9 +256,9 @@ |
SimulatedClock clock_; |
TestTransport test_transport_; |
- std::unique_ptr<ReceiveStatistics> receive_statistics_; |
- std::unique_ptr<ModuleRtpRtcpImpl> rtp_rtcp_impl_; |
- std::unique_ptr<RTCPSender> rtcp_sender_; |
+ rtc::scoped_ptr<ReceiveStatistics> receive_statistics_; |
+ rtc::scoped_ptr<ModuleRtpRtcpImpl> rtp_rtcp_impl_; |
+ rtc::scoped_ptr<RTCPSender> rtcp_sender_; |
}; |
TEST_F(RtcpSenderTest, SetRtcpStatus) { |