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

@ -13,7 +13,7 @@
#include "webrtc/modules/audio_processing/aec/echo_cancellation_internal.h"
#include "webrtc/modules/audio_processing/aec/echo_cancellation.h"
#include "webrtc/typedefs.h"
namespace webrtc {
namespace {
class SystemDelayTest : public ::testing::Test {
@ -597,3 +597,4 @@ TEST_F(SystemDelayTest, CorrectImpactWhenTogglingDeviceBufferValues) {
}
} // namespace
} // namespace webrtc