| Index: webrtc/common_audio/vad/vad_unittest.h
|
| diff --git a/webrtc/common_audio/vad/vad_unittest.h b/webrtc/common_audio/vad/vad_unittest.h
|
| index 7edf58557121dc8dac08800d2a81b9e716dd80b2..55ba5271f320f4a1194d7ec0a0785714129f346c 100644
|
| --- a/webrtc/common_audio/vad/vad_unittest.h
|
| +++ b/webrtc/common_audio/vad/vad_unittest.h
|
| @@ -8,16 +8,15 @@
|
| * be found in the AUTHORS file in the root of the source tree.
|
| */
|
|
|
| -#ifndef WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H_
|
| -#define WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H_
|
| +#ifndef WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H
|
| +#define WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H
|
|
|
| #include <stddef.h> // size_t
|
|
|
| #include "webrtc/test/gtest.h"
|
| #include "webrtc/typedefs.h"
|
|
|
| -namespace webrtc {
|
| -namespace test {
|
| +namespace {
|
|
|
| // Modes we support
|
| const int kModes[] = { 0, 1, 2, 3 };
|
| @@ -33,8 +32,7 @@
|
| kMaxFrameLength };
|
| const size_t kFrameLengthsSize = sizeof(kFrameLengths) / sizeof(*kFrameLengths);
|
|
|
| -} // namespace test
|
| -} // namespace webrtc
|
| +} // namespace
|
|
|
| class VadTest : public ::testing::Test {
|
| protected:
|
| @@ -46,4 +44,4 @@
|
| bool ValidRatesAndFrameLengths(int rate, size_t frame_length);
|
| };
|
|
|
| -#endif // WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H_
|
| +#endif // WEBRTC_COMMON_AUDIO_VAD_VAD_UNITTEST_H
|
|
|