Index: webrtc/modules/audio_coding/codecs/opus/opus_fec_test.cc |
diff --git a/webrtc/modules/audio_coding/codecs/opus/opus_fec_test.cc b/webrtc/modules/audio_coding/codecs/opus/opus_fec_test.cc |
index 4f9f7ff7bb0bcb0ff2ad645acd169edaf5d6cb9e..560c978b308cb24c24b62ef8b33669ba9d4212ac 100644 |
--- a/webrtc/modules/audio_coding/codecs/opus/opus_fec_test.cc |
+++ b/webrtc/modules/audio_coding/codecs/opus/opus_fec_test.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/format_macros.h" |
-#include "webrtc/base/scoped_ptr.h" |
#include "webrtc/modules/audio_coding/codecs/opus/opus_interface.h" |
#include "webrtc/test/testsupport/fileutils.h" |
@@ -61,9 +62,9 @@ class OpusFecTest : public TestWithParam<coding_param> { |
string in_filename_; |
- rtc::scoped_ptr<int16_t[]> in_data_; |
- rtc::scoped_ptr<int16_t[]> out_data_; |
- rtc::scoped_ptr<uint8_t[]> bit_stream_; |
+ std::unique_ptr<int16_t[]> in_data_; |
+ std::unique_ptr<int16_t[]> out_data_; |
+ std::unique_ptr<uint8_t[]> bit_stream_; |
}; |
void OpusFecTest::SetUp() { |