Index: content/browser/renderer_host/media/audio_input_renderer_host.h |
diff --git a/content/browser/renderer_host/media/audio_input_renderer_host.h b/content/browser/renderer_host/media/audio_input_renderer_host.h |
index 56275cb36027a359b84d8477a3d32bff767aaff4..05846389d7dbb58b68db85d851dcaf299adb2b63 100644 |
--- a/content/browser/renderer_host/media/audio_input_renderer_host.h |
+++ b/content/browser/renderer_host/media/audio_input_renderer_host.h |
@@ -109,6 +109,7 @@ class CONTENT_EXPORT AudioInputRendererHost |
media::AudioInputController::ErrorCode error_code) override; |
void OnLog(media::AudioInputController* controller, |
const std::string& message) override; |
+ void OnMuted(media::AudioInputController* controller, bool is_muted) override; |
// Sets the PID renderer. This is used for constructing the debug recording |
// filename. |
@@ -171,6 +172,10 @@ class CONTENT_EXPORT AudioInputRendererHost |
void DoLog(media::AudioInputController* controller, |
const std::string& message); |
+ // Notify renderer of a change to a stream's muted state. |
+ void DoNotifyMutedState(media::AudioInputController* controller, |
+ bool is_muted); |
+ |
// Send an error message to the renderer. |
void SendErrorMessage(int stream_id, ErrorCode error_code); |