| Index: Source/modules/speech/SpeechRecognitionController.h
|
| diff --git a/Source/modules/speech/SpeechRecognitionController.h b/Source/modules/speech/SpeechRecognitionController.h
|
| index 7aceec458c1ec455136f270d07321b4606c7320c..6a5fa1bde2914598430a0d9aefae086e28fd4e74 100644
|
| --- a/Source/modules/speech/SpeechRecognitionController.h
|
| +++ b/Source/modules/speech/SpeechRecognitionController.h
|
| @@ -28,7 +28,6 @@
|
|
|
| #include "core/page/Page.h"
|
| #include "modules/speech/SpeechRecognitionClient.h"
|
| -#include "platform/weborigin/KURL.h"
|
| #include "wtf/PassOwnPtr.h"
|
|
|
| namespace blink {
|
| @@ -40,9 +39,9 @@
|
| public:
|
| virtual ~SpeechRecognitionController();
|
|
|
| - void start(SpeechRecognition* recognition, const SpeechGrammarList* grammars, const String& lang, const KURL& serviceURI, bool continuous, bool interimResults, unsigned long maxAlternatives, MediaStreamTrack* audioTrack)
|
| + void start(SpeechRecognition* recognition, const SpeechGrammarList* grammars, const String& lang, bool continuous, bool interimResults, unsigned long maxAlternatives, MediaStreamTrack* audioTrack)
|
| {
|
| - m_client->start(recognition, grammars, lang, serviceURI, continuous, interimResults, maxAlternatives, audioTrack);
|
| + m_client->start(recognition, grammars, lang, continuous, interimResults, maxAlternatives, audioTrack);
|
| }
|
|
|
| void stop(SpeechRecognition* recognition) { m_client->stop(recognition); }
|
|
|