Chromium Code Reviews| Index: content/public/browser/speech_recognition_manager.h |
| diff --git a/content/public/browser/speech_recognition_manager.h b/content/public/browser/speech_recognition_manager.h |
| index 4b1ae721225a0e31a437d31deef4370ba2b69d59..a4f34d815c35fa576751334711e62fbda45c3955 100644 |
| --- a/content/public/browser/speech_recognition_manager.h |
| +++ b/content/public/browser/speech_recognition_manager.h |
| @@ -49,6 +49,10 @@ class SpeechRecognitionManager { |
| virtual void AbortAllSessionsForListener( |
| SpeechRecognitionEventListener* listener) = 0; |
| + // Aborts all sessions for a given renderer, without providing any result. |
| + virtual void AbortAllSessionsForRenderer( |
|
Satish
2012/07/03 15:11:57
should be 'ForTab' since you are also passing a re
Primiano Tucci (use gerrit)
2012/07/03 16:54:35
Wouldn't such rename exclude the background render
|
| + int render_process_id, int render_view_id) = 0; |
| + |
| // Stops audio capture for an existing session. The audio captured before the |
| // call will be processed, possibly ending up with a result. |
| virtual void StopAudioCaptureForSession(int session_id) = 0; |