Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(506)

Unified Diff: webrtc/modules/audio_processing/splitting_filter.h

Issue 1839603002: Remove webrtc::ScopedVector (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/splitting_filter.h
diff --git a/webrtc/modules/audio_processing/splitting_filter.h b/webrtc/modules/audio_processing/splitting_filter.h
index 6b81c2fb05f92efbc844a90ad7d7b2f41325d170..2828df361452f962ab2eef8e6da4d087cff85a40 100644
--- a/webrtc/modules/audio_processing/splitting_filter.h
+++ b/webrtc/modules/audio_processing/splitting_filter.h
@@ -12,10 +12,10 @@
#define WEBRTC_MODULES_AUDIO_PROCESSING_SPLITTING_FILTER_H_
#include <cstring>
+#include <memory>
#include <vector>
#include "webrtc/modules/audio_processing/three_band_filter_bank.h"
-#include "webrtc/system_wrappers/include/scoped_vector.h"
namespace webrtc {
@@ -60,7 +60,7 @@ class SplittingFilter {
const size_t num_bands_;
std::vector<TwoBandsStates> two_bands_states_;
- ScopedVector<ThreeBandFilterBank> three_band_filter_banks_;
+ std::vector<std::unique_ptr<ThreeBandFilterBank>> three_band_filter_banks_;
};
} // namespace webrtc
« no previous file with comments | « webrtc/modules/audio_processing/high_pass_filter_impl.h ('k') | webrtc/modules/audio_processing/splitting_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698