| Index: webrtc/modules/remote_bitrate_estimator/inter_arrival_unittest.cc
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/inter_arrival_unittest.cc b/webrtc/modules/remote_bitrate_estimator/inter_arrival_unittest.cc
|
| index 64f7ccae6bdeba7a204c6bcc0defc68efa71dac1..3b4151b3b7948eaf9facb8fa1274b76b72ae4772 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/inter_arrival_unittest.cc
|
| +++ b/webrtc/modules/remote_bitrate_estimator/inter_arrival_unittest.cc
|
| @@ -8,9 +8,10 @@
|
| * be found in the AUTHORS file in the root of the source tree.
|
| */
|
|
|
| +#include <memory>
|
| +
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -#include "webrtc/base/scoped_ptr.h"
|
| #include "webrtc/common_types.h"
|
| #include "webrtc/modules/remote_bitrate_estimator/inter_arrival.h"
|
|
|
| @@ -199,8 +200,8 @@ class InterArrivalTest : public ::testing::Test {
|
| EXPECT_EQ(expected_packet_size_delta, delta_packet_size);
|
| }
|
|
|
| - rtc::scoped_ptr<InterArrival> inter_arrival_rtp_;
|
| - rtc::scoped_ptr<InterArrival> inter_arrival_ast_;
|
| + std::unique_ptr<InterArrival> inter_arrival_rtp_;
|
| + std::unique_ptr<InterArrival> inter_arrival_ast_;
|
| };
|
|
|
| TEST_F(InterArrivalTest, FirstPacket) {
|
|
|