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

Unified Diff: webrtc/modules/audio_device/android/audio_device_template.h

Issue 3006793002: Removes unused WaveOut APIs from ADM (Closed)
Patch Set: Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_device/android/audio_device_template.h
diff --git a/webrtc/modules/audio_device/android/audio_device_template.h b/webrtc/modules/audio_device/android/audio_device_template.h
index 72e008c4e0992dc571a0770151c9687383465a30..6b9cc0b56126fa8d660504e7821b78b92dd84d38 100644
--- a/webrtc/modules/audio_device/android/audio_device_template.h
+++ b/webrtc/modules/audio_device/android/audio_device_template.h
@@ -231,18 +231,6 @@ class AudioDeviceTemplate : public AudioDeviceGeneric {
return false;
}
- int32_t SetWaveOutVolume(
- uint16_t volumeLeft, uint16_t volumeRight) override {
- FATAL() << "Should never be called";
- return -1;
- }
-
- int32_t WaveOutVolume(
- uint16_t& volumeLeft, uint16_t& volumeRight) const override {
- FATAL() << "Should never be called";
- return -1;
- }
-
int32_t InitSpeaker() override {
LOG(INFO) << __FUNCTION__;
return 0;

Powered by Google App Engine
This is Rietveld 408576698