Chromium Code Reviews| Index: Source/web/SpeechRecognitionClientProxy.cpp |
| diff --git a/Source/web/SpeechRecognitionClientProxy.cpp b/Source/web/SpeechRecognitionClientProxy.cpp |
| index 33632ed4114b84f8ef828d24f56dd935647740ec..3b6aa62d8828f2cb4c81f4f1490f96b454db79e4 100644 |
| --- a/Source/web/SpeechRecognitionClientProxy.cpp |
| +++ b/Source/web/SpeechRecognitionClientProxy.cpp |
| @@ -34,6 +34,7 @@ |
| #include "modules/speech/SpeechRecognitionResult.h" |
| #include "modules/speech/SpeechRecognitionResultList.h" |
| #include "platform/RuntimeEnabledFeatures.h" |
| +#include "platform/weborigin/KURL.h" |
|
jochen (gone - plz use gerrit)
2015/05/05 13:57:53
probably not needed?
kirtia
2015/05/05 23:12:29
Done. Yeah! Sorry about that :-)
|
| #include "platform/weborigin/SecurityOrigin.h" |
| #include "public/platform/WebMediaStreamTrack.h" |
| #include "public/platform/WebSecurityOrigin.h" |
| @@ -55,7 +56,7 @@ PassOwnPtr<SpeechRecognitionClientProxy> SpeechRecognitionClientProxy::create(We |
| return adoptPtr(new SpeechRecognitionClientProxy(recognizer)); |
| } |
| -void SpeechRecognitionClientProxy::start(SpeechRecognition* recognition, const SpeechGrammarList* grammarList, const String& lang, const String& serviceURI, bool continuous, bool interimResults, unsigned long maxAlternatives, MediaStreamTrack* audioTrack) |
| +void SpeechRecognitionClientProxy::start(SpeechRecognition* recognition, const SpeechGrammarList* grammarList, const String& lang, const KURL& serviceURI, bool continuous, bool interimResults, unsigned long maxAlternatives, MediaStreamTrack* audioTrack) |
| { |
| WebVector<WebSpeechGrammar> webSpeechGrammars(static_cast<size_t>(grammarList->length())); |
| for (unsigned long i = 0; i < grammarList->length(); ++i) |