| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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_FUNC_TEST_MANAGER_H | 11 #ifndef WEBRTC_AUDIO_DEVICE_FUNC_TEST_MANAGER_H |
| 12 #define WEBRTC_AUDIO_DEVICE_FUNC_TEST_MANAGER_H | 12 #define WEBRTC_AUDIO_DEVICE_FUNC_TEST_MANAGER_H |
| 13 | 13 |
| 14 #include <list> | 14 #include <list> |
| 15 #include <string> | 15 #include <string> |
| 16 | 16 |
| 17 #include "webrtc/common_audio/resampler/include/resampler.h" | 17 #include "webrtc/common_audio/resampler/include/resampler.h" |
| 18 #include "webrtc/modules/audio_device/include/audio_device.h" | 18 #include "webrtc/modules/audio_device/include/audio_device.h" |
| 19 #include "webrtc/modules/audio_device/test/audio_device_test_defines.h" | 19 #include "webrtc/modules/audio_device/test/audio_device_test_defines.h" |
| 20 #include "webrtc/system_wrappers/interface/file_wrapper.h" | 20 #include "webrtc/system_wrappers/include/file_wrapper.h" |
| 21 #include "webrtc/typedefs.h" | 21 #include "webrtc/typedefs.h" |
| 22 | 22 |
| 23 | 23 |
| 24 #define ADM_AUDIO_LAYER AudioDeviceModule::kPlatformDefaultAudio | 24 #define ADM_AUDIO_LAYER AudioDeviceModule::kPlatformDefaultAudio |
| 25 //#define ADM_AUDIO_LAYER AudioDeviceModule::kLinuxPulseAudio | 25 //#define ADM_AUDIO_LAYER AudioDeviceModule::kLinuxPulseAudio |
| 26 | 26 |
| 27 enum TestType | 27 enum TestType |
| 28 { | 28 { |
| 29 TTInvalid = -1, | 29 TTInvalid = -1, |
| 30 TTAll = 0, | 30 TTAll = 0, |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 | 230 |
| 231 rtc::scoped_ptr<ProcessThread> _processThread; | 231 rtc::scoped_ptr<ProcessThread> _processThread; |
| 232 AudioDeviceModule* _audioDevice; | 232 AudioDeviceModule* _audioDevice; |
| 233 AudioEventObserver* _audioEventObserver; | 233 AudioEventObserver* _audioEventObserver; |
| 234 AudioTransportImpl* _audioTransport; | 234 AudioTransportImpl* _audioTransport; |
| 235 }; | 235 }; |
| 236 | 236 |
| 237 } // namespace webrtc | 237 } // namespace webrtc |
| 238 | 238 |
| 239 #endif // #ifndef WEBRTC_AUDIO_DEVICE_FUNC_TEST_MANAGER_H | 239 #endif // #ifndef WEBRTC_AUDIO_DEVICE_FUNC_TEST_MANAGER_H |
| OLD | NEW |