aboutsummaryrefslogtreecommitdiff
path: root/modules/audio_processing/aec3/echo_canceller3.cc
diff options
context:
space:
mode:
authorYves Gerey <yvesg@webrtc.org>2018-10-23 12:03:01 +0200
committerCommit Bot <commit-bot@chromium.org>2018-10-23 11:32:56 +0000
commit988cc0870bb49c855b4547f929462eeb38186d12 (patch)
treea2dcf44287d237e5b921ae1f8fc960a91591cafc /modules/audio_processing/aec3/echo_canceller3.cc
parent8ee06a7b0cc22a486ad924e00034b95dbecd70ce (diff)
downloadwebrtc-988cc0870bb49c855b4547f929462eeb38186d12.tar.gz
[Cleanup] Add missing #include. Remove useless ones.
This CL is the result of running include-what-you-use tool on part of the code base (audio target and dependencies) plus manual fixes. bug: webrtc:8311 Change-Id: I277d281ce943c3ecc1bd45fd8d83055931743604 Reviewed-on: https://webrtc-review.googlesource.com/c/106280 Commit-Queue: Yves Gerey <yvesg@google.com> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25311}
Diffstat (limited to 'modules/audio_processing/aec3/echo_canceller3.cc')
-rw-r--r--modules/audio_processing/aec3/echo_canceller3.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/audio_processing/aec3/echo_canceller3.cc b/modules/audio_processing/aec3/echo_canceller3.cc
index 6a4456adf2..1b089f841d 100644
--- a/modules/audio_processing/aec3/echo_canceller3.cc
+++ b/modules/audio_processing/aec3/echo_canceller3.cc
@@ -9,9 +9,12 @@
*/
#include "modules/audio_processing/aec3/echo_canceller3.h"
+#include <algorithm>
+#include <utility>
+
+#include "modules/audio_processing/aec3/aec3_common.h"
#include "modules/audio_processing/logging/apm_data_dumper.h"
#include "rtc_base/atomicops.h"
-#include "rtc_base/logging.h"
#include "system_wrappers/include/field_trial.h"
namespace webrtc {