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

Side by Side Diff: webrtc/modules/audio_device/ios/audio_device_ios.h

Issue 2991343002: Decoupling audio_device from Obj-C code (Closed)
Patch Set: Rebasing... 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) 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_MODULES_AUDIO_DEVICE_IOS_AUDIO_DEVICE_IOS_H_ 11 #ifndef WEBRTC_MODULES_AUDIO_DEVICE_IOS_AUDIO_DEVICE_IOS_H_
12 #define WEBRTC_MODULES_AUDIO_DEVICE_IOS_AUDIO_DEVICE_IOS_H_ 12 #define WEBRTC_MODULES_AUDIO_DEVICE_IOS_AUDIO_DEVICE_IOS_H_
13 13
14 #include <memory> 14 #include <memory>
15 15
16 #include "WebRTC/RTCMacros.h" 16 #include "webrtc/sdk/objc/Framework/Headers/WebRTC/RTCMacros.h"
17 #include "webrtc/modules/audio_device/audio_device_generic.h" 17 #include "webrtc/modules/audio_device/audio_device_generic.h"
18 #include "webrtc/modules/audio_device/ios/audio_session_observer.h" 18 #include "webrtc/modules/audio_device/ios/audio_session_observer.h"
19 #include "webrtc/modules/audio_device/ios/voice_processing_audio_unit.h" 19 #include "webrtc/modules/audio_device/ios/voice_processing_audio_unit.h"
20 #include "webrtc/rtc_base/buffer.h" 20 #include "webrtc/rtc_base/buffer.h"
21 #include "webrtc/rtc_base/gtest_prod_util.h" 21 #include "webrtc/rtc_base/gtest_prod_util.h"
22 #include "webrtc/rtc_base/thread.h" 22 #include "webrtc/rtc_base/thread.h"
23 #include "webrtc/rtc_base/thread_annotations.h" 23 #include "webrtc/rtc_base/thread_annotations.h"
24 #include "webrtc/rtc_base/thread_checker.h" 24 #include "webrtc/rtc_base/thread_checker.h"
25 25
26 RTC_FWD_DECL_OBJC_CLASS(RTCAudioSessionDelegateAdapter); 26 RTC_FWD_DECL_OBJC_CLASS(RTCAudioSessionDelegateAdapter);
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 // Contains the time for when the last output volume change was detected. 298 // Contains the time for when the last output volume change was detected.
299 int64_t last_output_volume_change_time_ RTC_ACCESS_ON(thread_checker_); 299 int64_t last_output_volume_change_time_ RTC_ACCESS_ON(thread_checker_);
300 300
301 // Exposes private members for testing purposes only. 301 // Exposes private members for testing purposes only.
302 FRIEND_TEST_ALL_PREFIXES(AudioDeviceTest, testInterruptedAudioSession); 302 FRIEND_TEST_ALL_PREFIXES(AudioDeviceTest, testInterruptedAudioSession);
303 }; 303 };
304 304
305 } // namespace webrtc 305 } // namespace webrtc
306 306
307 #endif // WEBRTC_MODULES_AUDIO_DEVICE_IOS_AUDIO_DEVICE_IOS_H_ 307 #endif // WEBRTC_MODULES_AUDIO_DEVICE_IOS_AUDIO_DEVICE_IOS_H_
OLDNEW
« no previous file with comments | « webrtc/modules/audio_device/DEPS ('k') | webrtc/sdk/objc/Framework/Classes/Audio/RTCAudioSession+Private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698