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}
This commit is contained in:
henrika 2017-01-11 08:59:26 -08:00 committed by Commit bot
parent 0b201e7093
commit e8084706c3

View File

@ -295,7 +295,6 @@ class AudioDeviceTemplate : public AudioDeviceGeneric {
int32_t MicrophoneVolumeIsAvailable(bool& available) override{
available = false;
FATAL() << "Should never be called";
return -1;
}