From e8084706c34161bbdb72040aa8e398ef86c17e5a Mon Sep 17 00:00:00 2001 From: henrika Date: Wed, 11 Jan 2017 08:59:26 -0800 Subject: [PATCH] Removes FATAL() from MicrophoneVolumeIsAvailable() on Android. Trivial change that allows users to call MicrophoneVolumeIsAvailable() (and get a valid result) on Android without crashing. TBR=henrik.lundin BUG=NONE Review-Url: https://codereview.webrtc.org/2620243003 Cr-Commit-Position: refs/heads/master@{#16013} --- webrtc/modules/audio_device/android/audio_device_template.h | 1 - 1 file changed, 1 deletion(-) diff --git a/webrtc/modules/audio_device/android/audio_device_template.h b/webrtc/modules/audio_device/android/audio_device_template.h index 9f12e18197..f8307f5105 100644 --- a/webrtc/modules/audio_device/android/audio_device_template.h +++ b/webrtc/modules/audio_device/android/audio_device_template.h @@ -295,7 +295,6 @@ class AudioDeviceTemplate : public AudioDeviceGeneric { int32_t MicrophoneVolumeIsAvailable(bool& available) override{ available = false; - FATAL() << "Should never be called"; return -1; }