Index: webrtc/modules/audio_processing/audio_buffer.h |
diff --git a/webrtc/modules/audio_processing/audio_buffer.h b/webrtc/modules/audio_processing/audio_buffer.h |
index 928f0a43be7a7080722ac675b8e9395b709779a4..d90219e91331ac0d9547cb2557408bcbd487d40d 100644 |
--- a/webrtc/modules/audio_processing/audio_buffer.h |
+++ b/webrtc/modules/audio_processing/audio_buffer.h |
@@ -12,12 +12,12 @@ |
#define WEBRTC_MODULES_AUDIO_PROCESSING_AUDIO_BUFFER_H_ |
#include <memory> |
+#include <vector> |
#include "webrtc/common_audio/channel_buffer.h" |
#include "webrtc/modules/audio_processing/include/audio_processing.h" |
#include "webrtc/modules/audio_processing/splitting_filter.h" |
#include "webrtc/modules/include/module_common_types.h" |
-#include "webrtc/system_wrappers/include/scoped_vector.h" |
#include "webrtc/typedefs.h" |
namespace webrtc { |
@@ -155,8 +155,8 @@ class AudioBuffer { |
std::unique_ptr<IFChannelBuffer> input_buffer_; |
std::unique_ptr<IFChannelBuffer> output_buffer_; |
std::unique_ptr<ChannelBuffer<float> > process_buffer_; |
- ScopedVector<PushSincResampler> input_resamplers_; |
- ScopedVector<PushSincResampler> output_resamplers_; |
+ std::vector<std::unique_ptr<PushSincResampler>> input_resamplers_; |
+ std::vector<std::unique_ptr<PushSincResampler>> output_resamplers_; |
}; |
} // namespace webrtc |