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

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

Issue 2964773002: Revert "Update includes for webrtc/{base => rtc_base} rename (1/3)" (Closed)
Patch Set: Created 3 years, 5 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"
18 #include "webrtc/modules/audio_processing/include/audio_processing.h" 19 #include "webrtc/modules/audio_processing/include/audio_processing.h"
19 #include "webrtc/rtc_base/ignore_wundef.h"
20 20
21 RTC_PUSH_IGNORING_WUNDEF() 21 RTC_PUSH_IGNORING_WUNDEF()
22 #include "webrtc/modules/audio_processing/debug.pb.h" 22 #include "webrtc/modules/audio_processing/debug.pb.h"
23 RTC_POP_IGNORING_WUNDEF() 23 RTC_POP_IGNORING_WUNDEF()
24 24
25 namespace webrtc { 25 namespace webrtc {
26 namespace test { 26 namespace test {
27 27
28 class DebugDumpReplayer { 28 class DebugDumpReplayer {
29 public: 29 public:
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 StreamConfig output_config_; 68 StreamConfig output_config_;
69 69
70 bool has_next_event_; 70 bool has_next_event_;
71 audioproc::Event next_event_; 71 audioproc::Event next_event_;
72 }; 72 };
73 73
74 } // namespace test 74 } // namespace test
75 } // namespace webrtc 75 } // namespace webrtc
76 76
77 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_DEBUG_DUMP_REPLAYER_H_ 77 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_DEBUG_DUMP_REPLAYER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698