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

Side by Side Diff: webrtc/modules/audio_device/ios/audio_device_not_implemented_ios.mm

Issue 3006793002: Removes unused WaveOut APIs from ADM (Closed)
Patch Set: 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) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 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
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 int32_t AudioDeviceIOS::SetSpeakerVolume(uint32_t volume) { 60 int32_t AudioDeviceIOS::SetSpeakerVolume(uint32_t volume) {
61 RTC_NOTREACHED() << "Not implemented"; 61 RTC_NOTREACHED() << "Not implemented";
62 return -1; 62 return -1;
63 } 63 }
64 64
65 int32_t AudioDeviceIOS::SpeakerVolume(uint32_t& volume) const { 65 int32_t AudioDeviceIOS::SpeakerVolume(uint32_t& volume) const {
66 RTC_NOTREACHED() << "Not implemented"; 66 RTC_NOTREACHED() << "Not implemented";
67 return -1; 67 return -1;
68 } 68 }
69 69
70 int32_t AudioDeviceIOS::SetWaveOutVolume(uint16_t, uint16_t) {
71 RTC_NOTREACHED() << "Not implemented";
72 return -1;
73 }
74
75 int32_t AudioDeviceIOS::WaveOutVolume(uint16_t&, uint16_t&) const {
76 RTC_NOTREACHED() << "Not implemented";
77 return -1;
78 }
79
80 int32_t AudioDeviceIOS::MaxSpeakerVolume(uint32_t& maxVolume) const { 70 int32_t AudioDeviceIOS::MaxSpeakerVolume(uint32_t& maxVolume) const {
81 RTC_NOTREACHED() << "Not implemented"; 71 RTC_NOTREACHED() << "Not implemented";
82 return -1; 72 return -1;
83 } 73 }
84 74
85 int32_t AudioDeviceIOS::MinSpeakerVolume(uint32_t& minVolume) const { 75 int32_t AudioDeviceIOS::MinSpeakerVolume(uint32_t& minVolume) const {
86 RTC_NOTREACHED() << "Not implemented"; 76 RTC_NOTREACHED() << "Not implemented";
87 return -1; 77 return -1;
88 } 78 }
89 79
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 RTC_NOTREACHED() << "Not implemented"; 273 RTC_NOTREACHED() << "Not implemented";
284 return -1; 274 return -1;
285 } 275 }
286 276
287 int32_t AudioDeviceIOS::CPULoad(uint16_t&) const { 277 int32_t AudioDeviceIOS::CPULoad(uint16_t&) const {
288 RTC_NOTREACHED() << "Not implemented"; 278 RTC_NOTREACHED() << "Not implemented";
289 return -1; 279 return -1;
290 } 280 }
291 281
292 } // namespace webrtc 282 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698