Index: media/audio/audio_io.h |
diff --git a/media/audio/audio_io.h b/media/audio/audio_io.h |
index 105e32eb362b7dd8caccd40bc8037f74705ddf40..cee6eca37a46a90202d1c766b56295f2803e8ee3 100644 |
--- a/media/audio/audio_io.h |
+++ b/media/audio/audio_io.h |
@@ -164,6 +164,9 @@ class MEDIA_EXPORT AudioInputStream { |
// Returns the Automatic Gain Control (AGC) state. |
virtual bool GetAutomaticGainControl() = 0; |
+ |
+ // Returns the current muting state for the microphone. |
+ virtual bool IsMuted() { return false; }; |
tommi (sloooow) - chröme
2014/10/10 15:54:36
will this be made pure virtual in the next patch s
henrika (OOO until Aug 14)
2014/10/13 12:27:17
Yes it will.
|
}; |
} // namespace media |