This CL introduces namespaces in the aec c++ files

(the ones that were recently moved from c)

There are many files changed but most changes just
consist of adding namespaces.

In aec_common.h an C++-specific #ifdef needed to be added as
that file is both included from C and C++. I could see no
way around that but please let me know if there is a better
way around that.

BUG=webrtc:5201

Review URL: https://codereview.webrtc.org/1766663002

Cr-Commit-Position: refs/heads/master@{#11883}
This commit is contained in:
peah
2016-03-05 08:39:21 -08:00
committed by Commit bot
parent f472c5b672
commit 50e21bd40b
14 changed files with 50 additions and 3 deletions

View File

@ -25,10 +25,10 @@
#include "webrtc/modules/audio_processing/beamformer/array_util.h"
#include "webrtc/typedefs.h"
struct AecCore;
namespace webrtc {
struct AecCore;
class AudioFrame;
template<typename T>