Index: chrome/renderer/speech_input_dispatcher.h |
diff --git a/chrome/renderer/speech_input_dispatcher.h b/chrome/renderer/speech_input_dispatcher.h |
index ec9333fdf45953c76c70a814765b03717e3c09cb..e7d298cff1f80b992f596638b11f83026d352704 100644 |
--- a/chrome/renderer/speech_input_dispatcher.h |
+++ b/chrome/renderer/speech_input_dispatcher.h |
@@ -6,6 +6,7 @@ |
#define CHROME_RENDERER_SPEECH_INPUT_DISPATCHER_H_ |
#include "base/basictypes.h" |
+#include "chrome/common/speech_input_result.h" |
#include "ipc/ipc_message.h" |
#include "third_party/WebKit/WebKit/chromium/public/WebSpeechInputController.h" |
@@ -41,7 +42,8 @@ class SpeechInputDispatcher : public WebKit::WebSpeechInputController { |
void stopRecording(int request_id); |
private: |
- void OnSpeechRecognitionResult(int request_id, const string16& result); |
+ void OnSpeechRecognitionResult( |
+ int request_id, const speech_input::SpeechInputResultArray& result); |
void OnSpeechRecordingComplete(int request_id); |
void OnSpeechRecognitionComplete(int request_id); |