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

Side by Side Diff: webrtc/modules/audio_processing/aec_dump/capture_stream_info.h

Issue 2969653002: Update includes for webrtc/{base => rtc_base} rename (1/3) (Closed)
Patch Set: Rebased onto 89c4a7e57d524b13fbe0c823a83a4c10c2e63bd0 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) 2017 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2017 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_AEC_DUMP_CAPTURE_STREAM_INFO_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC_DUMP_CAPTURE_STREAM_INFO_H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC_DUMP_CAPTURE_STREAM_INFO_H_ 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC_DUMP_CAPTURE_STREAM_INFO_H_
13 13
14 #include <memory> 14 #include <memory>
15 #include <utility> 15 #include <utility>
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/base/checks.h"
19 #include "webrtc/base/ignore_wundef.h"
20 #include "webrtc/base/logging.h"
21 #include "webrtc/modules/audio_processing/aec_dump/write_to_file_task.h" 18 #include "webrtc/modules/audio_processing/aec_dump/write_to_file_task.h"
22 #include "webrtc/modules/audio_processing/include/aec_dump.h" 19 #include "webrtc/modules/audio_processing/include/aec_dump.h"
23 #include "webrtc/modules/include/module_common_types.h" 20 #include "webrtc/modules/include/module_common_types.h"
21 #include "webrtc/rtc_base/checks.h"
22 #include "webrtc/rtc_base/ignore_wundef.h"
23 #include "webrtc/rtc_base/logging.h"
24 24
25 // Files generated at build-time by the protobuf compiler. 25 // Files generated at build-time by the protobuf compiler.
26 RTC_PUSH_IGNORING_WUNDEF() 26 RTC_PUSH_IGNORING_WUNDEF()
27 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD 27 #ifdef WEBRTC_ANDROID_PLATFORM_BUILD
28 #include "external/webrtc/webrtc/modules/audio_processing/debug.pb.h" 28 #include "external/webrtc/webrtc/modules/audio_processing/debug.pb.h"
29 #else 29 #else
30 #include "webrtc/modules/audio_processing/debug.pb.h" 30 #include "webrtc/modules/audio_processing/debug.pb.h"
31 #endif 31 #endif
32 RTC_POP_IGNORING_WUNDEF() 32 RTC_POP_IGNORING_WUNDEF()
33 33
(...skipping 23 matching lines...) Expand all
57 task_->GetEvent()->set_type(audioproc::Event::STREAM); 57 task_->GetEvent()->set_type(audioproc::Event::STREAM);
58 } 58 }
59 59
60 private: 60 private:
61 std::unique_ptr<WriteToFileTask> task_; 61 std::unique_ptr<WriteToFileTask> task_;
62 }; 62 };
63 63
64 } // namespace webrtc 64 } // namespace webrtc
65 65
66 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_DUMP_CAPTURE_STREAM_INFO_H_ 66 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC_DUMP_CAPTURE_STREAM_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698