| 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_VOICE_ENGINE_SHARED_DATA_H | 11 #ifndef WEBRTC_VOICE_ENGINE_SHARED_DATA_H |
| 12 #define WEBRTC_VOICE_ENGINE_SHARED_DATA_H | 12 #define WEBRTC_VOICE_ENGINE_SHARED_DATA_H |
| 13 | 13 |
| 14 #include "webrtc/base/scoped_ptr.h" | 14 #include "webrtc/base/scoped_ptr.h" |
| 15 #include "webrtc/modules/audio_device/include/audio_device.h" | 15 #include "webrtc/modules/audio_device/include/audio_device.h" |
| 16 #include "webrtc/modules/audio_processing/include/audio_processing.h" | 16 #include "webrtc/modules/audio_processing/include/audio_processing.h" |
| 17 #include "webrtc/modules/utility/interface/process_thread.h" | 17 #include "webrtc/modules/utility/include/process_thread.h" |
| 18 #include "webrtc/voice_engine/channel_manager.h" | 18 #include "webrtc/voice_engine/channel_manager.h" |
| 19 #include "webrtc/voice_engine/statistics.h" | 19 #include "webrtc/voice_engine/statistics.h" |
| 20 #include "webrtc/voice_engine/voice_engine_defines.h" | 20 #include "webrtc/voice_engine/voice_engine_defines.h" |
| 21 | 21 |
| 22 class ProcessThread; | 22 class ProcessThread; |
| 23 | 23 |
| 24 namespace webrtc { | 24 namespace webrtc { |
| 25 class Config; | 25 class Config; |
| 26 class CriticalSectionWrapper; | 26 class CriticalSectionWrapper; |
| 27 | 27 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 AudioDeviceModule::AudioLayer _audioDeviceLayer; | 75 AudioDeviceModule::AudioLayer _audioDeviceLayer; |
| 76 | 76 |
| 77 SharedData(const Config& config); | 77 SharedData(const Config& config); |
| 78 virtual ~SharedData(); | 78 virtual ~SharedData(); |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 } // namespace voe | 81 } // namespace voe |
| 82 | 82 |
| 83 } // namespace webrtc | 83 } // namespace webrtc |
| 84 #endif // WEBRTC_VOICE_ENGINE_SHARED_DATA_H | 84 #endif // WEBRTC_VOICE_ENGINE_SHARED_DATA_H |
| OLD | NEW |