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_RENDERER_SPEECH_INPUT_DISPATCHER_H_ |
| 6 #define CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "ipc/ipc_message.h" |
| 10 #include "third_party/WebKit/WebKit/chromium/public/WebSpeechInputController.h" |
| 11 |
| 12 class GURL; |
| 13 class RenderView; |
| 14 |
| 15 namespace WebKit { |
| 16 class WebSpeechInputListener; |
| 17 } |
| 18 |
| 19 // SpeechInputDispatcher is a delegate for speech input messages used by WebKit. |
| 20 // It's the complement of SpeechInputDispatcherHost (owned by RenderViewHost). |
| 21 class SpeechInputDispatcher : public WebKit::WebSpeechInputController { |
| 22 public: |
| 23 SpeechInputDispatcher(RenderView* render_view, |
| 24 WebKit::WebSpeechInputListener* listener); |
| 25 |
| 26 // Called to possibly handle the incoming IPC message. Returns true if |
| 27 // handled. Called in render thread. |
| 28 bool OnMessageReceived(const IPC::Message& msg); |
| 29 |
| 30 // WebKit::WebSpeechInputController. |
| 31 bool startRecognition(); |
| 32 void cancelRecognition(); |
| 33 void stopRecording(); |
| 34 |
| 35 private: |
| 36 void OnSpeechRecognitionResult(const string16& result); |
| 37 void OnSpeechRecordingComplete(); |
| 38 void OnSpeechRecognitionComplete(); |
| 39 |
| 40 RenderView* render_view_; |
| 41 WebKit::WebSpeechInputListener* listener_; |
| 42 |
| 43 DISALLOW_COPY_AND_ASSIGN(SpeechInputDispatcher); |
| 44 }; |
| 45 |
| 46 #endif // CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ |
OLD | NEW |