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

Side by Side Diff: webrtc/modules/audio_device/dummy/file_audio_device.h

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! Created 5 years, 1 month 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) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 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_AUDIO_DEVICE_FILE_AUDIO_DEVICE_H 11 #ifndef WEBRTC_AUDIO_DEVICE_FILE_AUDIO_DEVICE_H
12 #define WEBRTC_AUDIO_DEVICE_FILE_AUDIO_DEVICE_H 12 #define WEBRTC_AUDIO_DEVICE_FILE_AUDIO_DEVICE_H
13 13
14 #include <stdio.h> 14 #include <stdio.h>
15 15
16 #include <string> 16 #include <string>
17 17
18 #include "webrtc/modules/audio_device/audio_device_generic.h" 18 #include "webrtc/modules/audio_device/audio_device_generic.h"
19 #include "webrtc/system_wrappers/interface/critical_section_wrapper.h" 19 #include "webrtc/system_wrappers/include/critical_section_wrapper.h"
20 #include "webrtc/system_wrappers/interface/file_wrapper.h" 20 #include "webrtc/system_wrappers/include/file_wrapper.h"
21 #include "webrtc/system_wrappers/interface/clock.h" 21 #include "webrtc/system_wrappers/include/clock.h"
22 22
23 namespace webrtc { 23 namespace webrtc {
24 class EventWrapper; 24 class EventWrapper;
25 class ThreadWrapper; 25 class ThreadWrapper;
26 26
27 // This is a fake audio device which plays audio from a file as its microphone 27 // This is a fake audio device which plays audio from a file as its microphone
28 // and plays out into a file. 28 // and plays out into a file.
29 class FileAudioDevice : public AudioDeviceGeneric { 29 class FileAudioDevice : public AudioDeviceGeneric {
30 public: 30 public:
31 // Constructs a file audio device with |id|. It will read audio from 31 // Constructs a file audio device with |id|. It will read audio from
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 FileWrapper& _inputFile; 190 FileWrapper& _inputFile;
191 std::string _outputFilename; 191 std::string _outputFilename;
192 std::string _inputFilename; 192 std::string _inputFilename;
193 193
194 Clock* _clock; 194 Clock* _clock;
195 }; 195 };
196 196
197 } // namespace webrtc 197 } // namespace webrtc
198 198
199 #endif // WEBRTC_AUDIO_DEVICE_FILE_AUDIO_DEVICE_H 199 #endif // WEBRTC_AUDIO_DEVICE_FILE_AUDIO_DEVICE_H
OLDNEW
« no previous file with comments | « webrtc/modules/audio_device/audio_device_impl.cc ('k') | webrtc/modules/audio_device/dummy/file_audio_device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698