| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ | 5 #ifndef CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ |
| 6 #define CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ | 6 #define CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "chrome/common/speech_input_result.h" | 9 #include "chrome/common/speech_input_result.h" |
| 10 #include "ipc/ipc_message.h" | 10 #include "ipc/ipc_message.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 class SpeechInputDispatcher : public WebKit::WebSpeechInputController { | 24 class SpeechInputDispatcher : public WebKit::WebSpeechInputController { |
| 25 public: | 25 public: |
| 26 SpeechInputDispatcher(RenderView* render_view, | 26 SpeechInputDispatcher(RenderView* render_view, |
| 27 WebKit::WebSpeechInputListener* listener); | 27 WebKit::WebSpeechInputListener* listener); |
| 28 | 28 |
| 29 // Called to possibly handle the incoming IPC message. Returns true if | 29 // Called to possibly handle the incoming IPC message. Returns true if |
| 30 // handled. Called in render thread. | 30 // handled. Called in render thread. |
| 31 bool OnMessageReceived(const IPC::Message& msg); | 31 bool OnMessageReceived(const IPC::Message& msg); |
| 32 | 32 |
| 33 // WebKit::WebSpeechInputController. | 33 // WebKit::WebSpeechInputController. |
| 34 bool startRecognition(int request_id, | 34 virtual bool startRecognition(int request_id, |
| 35 const WebKit::WebRect& element_rect, | 35 const WebKit::WebRect& element_rect, |
| 36 const WebKit::WebString& language, | 36 const WebKit::WebString& language, |
| 37 const WebKit::WebString& grammar); | 37 const WebKit::WebString& grammar); |
| 38 | 38 |
| 39 void cancelRecognition(int request_id); | 39 virtual void cancelRecognition(int request_id); |
| 40 void stopRecording(int request_id); | 40 virtual void stopRecording(int request_id); |
| 41 | 41 |
| 42 private: | 42 private: |
| 43 void OnSpeechRecognitionResult( | 43 void OnSpeechRecognitionResult( |
| 44 int request_id, const speech_input::SpeechInputResultArray& result); | 44 int request_id, const speech_input::SpeechInputResultArray& result); |
| 45 void OnSpeechRecordingComplete(int request_id); | 45 void OnSpeechRecordingComplete(int request_id); |
| 46 void OnSpeechRecognitionComplete(int request_id); | 46 void OnSpeechRecognitionComplete(int request_id); |
| 47 | 47 |
| 48 RenderView* render_view_; | 48 RenderView* render_view_; |
| 49 WebKit::WebSpeechInputListener* listener_; | 49 WebKit::WebSpeechInputListener* listener_; |
| 50 | 50 |
| 51 DISALLOW_COPY_AND_ASSIGN(SpeechInputDispatcher); | 51 DISALLOW_COPY_AND_ASSIGN(SpeechInputDispatcher); |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 #endif // CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ | 54 #endif // CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ |
| OLD | NEW |