| Index: webrtc/video/send_statistics_proxy_unittest.cc
|
| diff --git a/webrtc/video/send_statistics_proxy_unittest.cc b/webrtc/video/send_statistics_proxy_unittest.cc
|
| index b3da5e978aee71ac01fd4c255b0e43006a4294ff..a98505f84d1e01f3837a05d588826377853096b6 100644
|
| --- a/webrtc/video/send_statistics_proxy_unittest.cc
|
| +++ b/webrtc/video/send_statistics_proxy_unittest.cc
|
| @@ -12,6 +12,7 @@
|
| #include "webrtc/video/send_statistics_proxy.h"
|
|
|
| #include <map>
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -94,7 +95,7 @@ class SendStatisticsProxyTest : public ::testing::Test {
|
| }
|
|
|
| SimulatedClock fake_clock_;
|
| - rtc::scoped_ptr<SendStatisticsProxy> statistics_proxy_;
|
| + std::unique_ptr<SendStatisticsProxy> statistics_proxy_;
|
| VideoSendStream::Config config_;
|
| int avg_delay_ms_;
|
| int max_delay_ms_;
|
|
|