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

Unified Diff: webrtc/modules/audio_processing/noise_suppression_impl.cc

Issue 1422013002: Preparational work for an upcoming addition of a threadchecking scheme for APM (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@bundling_of_state_CL
Patch Set: Changes in response to user comments Created 5 years, 1 month 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/noise_suppression_impl.cc
diff --git a/webrtc/modules/audio_processing/noise_suppression_impl.cc b/webrtc/modules/audio_processing/noise_suppression_impl.cc
index 65ec3c445e2ffcf9279d16356abba310febc91bf..becaebc1fb453dbedf0e07facfd50d183f45b931 100644
--- a/webrtc/modules/audio_processing/noise_suppression_impl.cc
+++ b/webrtc/modules/audio_processing/noise_suppression_impl.cc
@@ -48,10 +48,7 @@ int MapSetting(NoiseSuppression::Level level) {
NoiseSuppressionImpl::NoiseSuppressionImpl(const AudioProcessing* apm,
CriticalSectionWrapper* crit)
- : ProcessingComponent(),
- apm_(apm),
- crit_(crit),
- level_(kModerate) {}
+ : ProcessingComponent(), apm_(apm), crit_(crit), level_(kModerate) {}
hlundin-webrtc 2015/11/05 13:08:55 Leave this file out of the CL.
peah-webrtc 2015/11/06 07:31:14 It was initially included, but changes along the w
hlundin-webrtc 2015/11/06 07:45:07 That is the way to do it.
peah-webrtc 2015/11/06 08:11:47 Acknowledged.
NoiseSuppressionImpl::~NoiseSuppressionImpl() {}

Powered by Google App Engine
This is Rietveld 408576698