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

Side by Side Diff: webrtc/modules/audio_processing/test/conversational_speech/multiend_call.h

Issue 3007763002: Move array_view.h to webrtc/api/ (Closed)
Patch Set: rebase Created 3 years, 3 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_TEST_CONVERSATIONAL_SPEECH_MULTIEND_CALL _H_ 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MULTIEND_CALL _H_
12 #define WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MULTIEND_CALL _H_ 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MULTIEND_CALL _H_
13 13
14 #include <stddef.h> 14 #include <stddef.h>
15 #include <map> 15 #include <map>
16 #include <memory> 16 #include <memory>
17 #include <set> 17 #include <set>
18 #include <string> 18 #include <string>
19 #include <utility> 19 #include <utility>
20 #include <vector> 20 #include <vector>
21 21
22 #include "webrtc/api/array_view.h"
22 #include "webrtc/modules/audio_processing/test/conversational_speech/timing.h" 23 #include "webrtc/modules/audio_processing/test/conversational_speech/timing.h"
23 #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_a bstract_factory.h" 24 #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_a bstract_factory.h"
24 #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_i nterface.h" 25 #include "webrtc/modules/audio_processing/test/conversational_speech/wavreader_i nterface.h"
25 #include "webrtc/rtc_base/array_view.h"
26 #include "webrtc/rtc_base/constructormagic.h" 26 #include "webrtc/rtc_base/constructormagic.h"
27 27
28 namespace webrtc { 28 namespace webrtc {
29 namespace test { 29 namespace test {
30 namespace conversational_speech { 30 namespace conversational_speech {
31 31
32 class MultiEndCall { 32 class MultiEndCall {
33 public: 33 public:
34 struct SpeakingTurn { 34 struct SpeakingTurn {
35 // Constructor required in order to use std::vector::emplace_back(). 35 // Constructor required in order to use std::vector::emplace_back().
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 std::vector<SpeakingTurn> speaking_turns_; 84 std::vector<SpeakingTurn> speaking_turns_;
85 85
86 RTC_DISALLOW_COPY_AND_ASSIGN(MultiEndCall); 86 RTC_DISALLOW_COPY_AND_ASSIGN(MultiEndCall);
87 }; 87 };
88 88
89 } // namespace conversational_speech 89 } // namespace conversational_speech
90 } // namespace test 90 } // namespace test
91 } // namespace webrtc 91 } // namespace webrtc
92 92
93 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MULTIEND_C ALL_H_ 93 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_TEST_CONVERSATIONAL_SPEECH_MULTIEND_C ALL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698