diff options
Diffstat (limited to 'content/browser/speech/speech_recognizer.h')
| -rw-r--r-- | content/browser/speech/speech_recognizer.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/browser/speech/speech_recognizer.h b/content/browser/speech/speech_recognizer.h index a54a59d..f8df0c2 100644 --- a/content/browser/speech/speech_recognizer.h +++ b/content/browser/speech/speech_recognizer.h @@ -65,8 +65,9 @@ class SpeechRecognizer // Informs of a change in the captured audio level, useful if displaying // a microphone volume indicator while recording. - // The value of |volume| is in the [0.0, 1.0] range. - virtual void SetInputVolume(int caller_id, float volume) = 0; + // The value of |volume| and |noise_volume| is in the [0.0, 1.0] range. + virtual void SetInputVolume(int caller_id, float volume, + float noise_volume) = 0; protected: virtual ~Delegate() {} |
