OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ |
| 6 #define CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/ref_counted.h" |
| 10 #include "ipc/ipc_message.h" |
| 11 |
| 12 namespace speech_input { |
| 13 |
| 14 // This is the gatekeeper for speech recognition in the browser process. It |
| 15 // handles requests received from various render views and makes sure only one |
| 16 // of them can use speech recognition at a time. It also sends recognition |
| 17 // results and status events to the render views when required. |
| 18 class SpeechInputManager { |
| 19 public: |
| 20 // Implemented by the dispatcher host to relay events to the render views. |
| 21 class Listener { |
| 22 public: |
| 23 virtual void SetRecognitionResult(int render_view_id, |
| 24 const string16& value) = 0; |
| 25 virtual void DidCompleteRecording(int render_view_id) = 0; |
| 26 virtual void DidCompleteRecognition(int render_view_id) = 0; |
| 27 }; |
| 28 |
| 29 // Factory method to create new instances. |
| 30 static SpeechInputManager* Create(Listener* listener); |
| 31 // Factory method definition useful for tests. |
| 32 typedef SpeechInputManager* (FactoryMethod)(Listener*); |
| 33 |
| 34 virtual ~SpeechInputManager() {} |
| 35 |
| 36 // Handlers for requests from render views. |
| 37 virtual void StartRecognition(int render_view_id) = 0; |
| 38 virtual void CancelRecognition(int render_view_id) = 0; |
| 39 virtual void StopRecording(int render_view_id) = 0; |
| 40 }; |
| 41 |
| 42 } // namespace speech_input |
| 43 |
| 44 #endif // CHROME_BROWSER_SPEECH_SPEECH_INPUT_MANAGER_H_ |
OLD | NEW |