| Index: chrome/renderer/speech_input_dispatcher.h
|
| diff --git a/chrome/renderer/speech_input_dispatcher.h b/chrome/renderer/speech_input_dispatcher.h
|
| index 2402eae468f4675d7aa47393136cef51513d880e..1af8f5d0a7dcc01365a88d6faf79f5abd13f923c 100644
|
| --- a/chrome/renderer/speech_input_dispatcher.h
|
| +++ b/chrome/renderer/speech_input_dispatcher.h
|
| @@ -14,9 +14,9 @@ class GURL;
|
| class RenderView;
|
|
|
| namespace WebKit {
|
| +class WebSpeechInputListener;
|
| class WebString;
|
| struct WebRect;
|
| -class WebSpeechInputListener;
|
| }
|
|
|
| // SpeechInputDispatcher is a delegate for speech input messages used by WebKit.
|
| @@ -31,16 +31,11 @@ class SpeechInputDispatcher : public WebKit::WebSpeechInputController {
|
| bool OnMessageReceived(const IPC::Message& msg);
|
|
|
| // WebKit::WebSpeechInputController.
|
| - // TODO(leandro): this is a temporary fix for a two-sided patch.
|
| - // https://bugs.webkit.org/show_bug.cgi?id=47089
|
| bool startRecognition(int request_id,
|
| const WebKit::WebRect& element_rect,
|
| const WebKit::WebString& language,
|
| const WebKit::WebString& grammar);
|
|
|
| - bool startRecognition(int request_id, const WebKit::WebRect& element_rect,
|
| - const WebKit::WebString& grammar);
|
| -
|
| void cancelRecognition(int request_id);
|
| void stopRecording(int request_id);
|
|
|
|
|