Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: webrtc/modules/audio_processing/test/debug_dump_replayer.h

Issue 2358993004: Enable the -Wundef warning for clang (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_TEST_DEBUG_DUMP_REPLAYER_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_TEST_DEBUG_DUMP_REPLAYER_H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_TEST_DEBUG_DUMP_REPLAYER_H_ 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_TEST_DEBUG_DUMP_REPLAYER_H_
13 13
14 #include <memory> 14 #include <memory>
15 #include <string> 15 #include <string>
16 16
17 #include "webrtc/base/ignore_wundef.h"
17 #include "webrtc/common_audio/channel_buffer.h" 18 #include "webrtc/common_audio/channel_buffer.h"
19 #include "webrtc/modules/audio_processing/include/audio_processing.h"
20
21 RTC_PUSH_IGNORING_WUNDEF()
18 #include "webrtc/modules/audio_processing/debug.pb.h" 22 #include "webrtc/modules/audio_processing/debug.pb.h"
19 #include "webrtc/modules/audio_processing/include/audio_processing.h" 23 RTC_POP_IGNORING_WUNDEF()
20 24
21 namespace webrtc { 25 namespace webrtc {
22 namespace test { 26 namespace test {
23 27
24 class DebugDumpReplayer { 28 class DebugDumpReplayer {
25 public: 29 public:
26 DebugDumpReplayer(); 30 DebugDumpReplayer();
27 ~DebugDumpReplayer(); 31 ~DebugDumpReplayer();
28 32
29 // Set dump file 33 // Set dump file
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 StreamConfig output_config_; 68 StreamConfig output_config_;
65 69
66 bool has_next_event_; 70 bool has_next_event_;
67 audioproc::Event next_event_; 71 audioproc::Event next_event_;
68 }; 72 };
69 73
70 } // namespace test 74 } // namespace test
71 } // namespace webrtc 75 } // namespace webrtc
72 76
73 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_DEBUG_DUMP_REPLAYER_H_ 77 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_DEBUG_DUMP_REPLAYER_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/test/bitexactness_tools.h ('k') | webrtc/modules/audio_processing/test/debug_dump_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698