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 b89e9608a718c9631f156adacb0bf5d944707e8e..5a9cc6bf2268cd9d84054ef8160821222d44dfd1 100644 |
--- a/content/browser/renderer_host/media/audio_input_renderer_host.h |
+++ b/content/browser/renderer_host/media/audio_input_renderer_host.h |
@@ -140,7 +140,8 @@ class CONTENT_EXPORT AudioInputRendererHost |
// required properties. |
void OnCreateStream(int stream_id, |
const AudioParameters& params, |
- const std::string& device_id); |
+ const std::string& device_id, |
+ bool automatic_gain_control); |
// Record the audio input stream referenced by |stream_id|. |
void OnRecordStream(int stream_id); |
@@ -151,9 +152,6 @@ class CONTENT_EXPORT AudioInputRendererHost |
// Set the volume of the audio stream referenced by |stream_id|. |
void OnSetVolume(int stream_id, double volume); |
- // Get the volume of the audio stream referenced by |stream_id|. |
- void OnGetVolume(int stream_id); |
- |
// Complete the process of creating an audio input stream. This will set up |
// the shared memory or shared socket in low latency mode. |
void DoCompleteCreation(media::AudioInputController* controller); |
@@ -175,9 +173,6 @@ class CONTENT_EXPORT AudioInputRendererHost |
// is closed. |
void CloseAndDeleteStream(AudioEntry* entry); |
- // Called on the audio thread after the audio input stream is closed. |
- void OnStreamClosed(AudioEntry* entry); |
- |
// Delete an audio entry and close the related audio stream. |
void DeleteEntry(AudioEntry* entry); |