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 "chrome/renderer/render_view_observer.h" | 10 #include "chrome/renderer/render_view_observer.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 WebKit::WebSpeechInputListener* listener); | 25 WebKit::WebSpeechInputListener* listener); |
26 | 26 |
27 private: | 27 private: |
28 // RenderView::Observer implementation. | 28 // RenderView::Observer implementation. |
29 bool OnMessageReceived(const IPC::Message& message); | 29 bool OnMessageReceived(const IPC::Message& message); |
30 | 30 |
31 // WebKit::WebSpeechInputController. | 31 // WebKit::WebSpeechInputController. |
32 virtual bool startRecognition(int request_id, | 32 virtual bool startRecognition(int request_id, |
33 const WebKit::WebRect& element_rect, | 33 const WebKit::WebRect& element_rect, |
34 const WebKit::WebString& language, | 34 const WebKit::WebString& language, |
35 const WebKit::WebString& grammar); | 35 const WebKit::WebString& grammar, |
| 36 const WebKit::WebSecurityOrigin& origin); |
36 | 37 |
37 virtual void cancelRecognition(int request_id); | 38 virtual void cancelRecognition(int request_id); |
38 virtual void stopRecording(int request_id); | 39 virtual void stopRecording(int request_id); |
39 | 40 |
40 void OnSpeechRecognitionResult( | 41 void OnSpeechRecognitionResult( |
41 int request_id, const speech_input::SpeechInputResultArray& result); | 42 int request_id, const speech_input::SpeechInputResultArray& result); |
42 void OnSpeechRecordingComplete(int request_id); | 43 void OnSpeechRecordingComplete(int request_id); |
43 void OnSpeechRecognitionComplete(int request_id); | 44 void OnSpeechRecognitionComplete(int request_id); |
44 | 45 |
45 WebKit::WebSpeechInputListener* listener_; | 46 WebKit::WebSpeechInputListener* listener_; |
46 | 47 |
47 DISALLOW_COPY_AND_ASSIGN(SpeechInputDispatcher); | 48 DISALLOW_COPY_AND_ASSIGN(SpeechInputDispatcher); |
48 }; | 49 }; |
49 | 50 |
50 #endif // CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ | 51 #endif // CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ |
OLD | NEW |