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

Side by Side Diff: webrtc/modules/audio_processing/test/conversational_speech/generator.cc

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 #include <iostream> 11 #include <iostream>
12 12
13 #include "gflags/gflags.h" 13 #include "gflags/gflags.h"
14 #include "webrtc/base/ptr_util.h"
15 #include "webrtc/modules/audio_processing/test/conversational_speech/config.h" 14 #include "webrtc/modules/audio_processing/test/conversational_speech/config.h"
15 #include "webrtc/modules/audio_processing/test/conversational_speech/multiend_ca ll.h"
16 #include "webrtc/modules/audio_processing/test/conversational_speech/simulator.h "
16 #include "webrtc/modules/audio_processing/test/conversational_speech/timing.h" 17 #include "webrtc/modules/audio_processing/test/conversational_speech/timing.h"
17 #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_f actory.h" 18 #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_f actory.h"
18 #include "webrtc/modules/audio_processing/test/conversational_speech/multiend_ca ll.h" 19 #include "webrtc/rtc_base/ptr_util.h"
19 #include "webrtc/modules/audio_processing/test/conversational_speech/simulator.h "
20 #include "webrtc/test/testsupport/fileutils.h" 20 #include "webrtc/test/testsupport/fileutils.h"
21 21
22 namespace webrtc { 22 namespace webrtc {
23 namespace test { 23 namespace test {
24 namespace { 24 namespace {
25 25
26 // Adapting DirExists/FileExists interfaces to DEFINE_validator. 26 // Adapting DirExists/FileExists interfaces to DEFINE_validator.
27 auto dir_exists = [](const char* c, const std::string& dirpath) { 27 auto dir_exists = [](const char* c, const std::string& dirpath) {
28 return DirExists(dirpath); 28 return DirExists(dirpath);
29 }; 29 };
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 return 0; 81 return 0;
82 } 82 }
83 83
84 } // namespace test 84 } // namespace test
85 } // namespace webrtc 85 } // namespace webrtc
86 86
87 int main(int argc, char* argv[]) { 87 int main(int argc, char* argv[]) {
88 return webrtc::test::main(argc, argv); 88 return webrtc::test::main(argc, argv);
89 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698