aboutsummaryrefslogtreecommitdiff
path: root/modules/audio_mixer/audio_mixer_impl.h
diff options
context:
space:
mode:
authorYves Gerey <yvesg@webrtc.org>2018-11-28 16:47:49 +0100
committerCommit Bot <commit-bot@chromium.org>2018-11-28 18:25:07 +0000
commit3e70781361ed0666b925fe4333a567025de211bb (patch)
treeac742ed0c13e456517ddc872f65df7e1beb41c7f /modules/audio_mixer/audio_mixer_impl.h
parent0f9c38e3d1f1ef21ef9e15e9dcfa30aefb8a9ce1 (diff)
downloadwebrtc-3e70781361ed0666b925fe4333a567025de211bb.tar.gz
[Cleanup] Add missing #include. Remove useless ones. IWYU part 2.
This is a follow-up to https://webrtc-review.googlesource.com/c/src/+/106280. This time the whole code base is covered. Some files may have not been fixed though, whenever the IWYU tool was breaking the build. Bug: webrtc:8311 Change-Id: I2c31f552a87e887d33931d46e87b6208b1e483ef Reviewed-on: https://webrtc-review.googlesource.com/c/111965 Commit-Queue: Yves Gerey <yvesg@google.com> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25830}
Diffstat (limited to 'modules/audio_mixer/audio_mixer_impl.h')
-rw-r--r--modules/audio_mixer/audio_mixer_impl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/audio_mixer/audio_mixer_impl.h b/modules/audio_mixer/audio_mixer_impl.h
index 8edd3b8bdc..adaf2bd481 100644
--- a/modules/audio_mixer/audio_mixer_impl.h
+++ b/modules/audio_mixer/audio_mixer_impl.h
@@ -11,12 +11,15 @@
#ifndef MODULES_AUDIO_MIXER_AUDIO_MIXER_IMPL_H_
#define MODULES_AUDIO_MIXER_AUDIO_MIXER_IMPL_H_
+#include <stddef.h>
#include <memory>
#include <vector>
+#include "api/audio/audio_frame.h"
#include "api/audio/audio_mixer.h"
#include "modules/audio_mixer/frame_combiner.h"
#include "modules/audio_mixer/output_rate_calculator.h"
+#include "rtc_base/constructormagic.h"
#include "rtc_base/criticalsection.h"
#include "rtc_base/race_checker.h"
#include "rtc_base/scoped_ref_ptr.h"