Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2033)

Unified Diff: Source/web/SpeechRecognitionClientProxy.h

Issue 1117383002: Changing serviceuri param to be url from string in Blink and tagging requests to speech recognizer Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixing compile errors Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/web/SpeechRecognitionClientProxy.h
diff --git a/Source/web/SpeechRecognitionClientProxy.h b/Source/web/SpeechRecognitionClientProxy.h
index cca71a1dd2e667c2ddcaa11767dd87f1152ea891..92ed15eff1957f6752be9d484b0223aa2aa4c46c 100644
--- a/Source/web/SpeechRecognitionClientProxy.h
+++ b/Source/web/SpeechRecognitionClientProxy.h
@@ -27,6 +27,7 @@
#define SpeechRecognitionClientProxy_h
#include "modules/speech/SpeechRecognitionClient.h"
+#include "platform/weborigin/KURL.h"
jochen (gone - plz use gerrit) 2015/05/05 13:57:53 same here
kirtia 2015/05/05 23:12:29 Done.
#include "public/web/WebSpeechRecognizerClient.h"
#include "wtf/Compiler.h"
#include "wtf/PassOwnPtr.h"
@@ -47,7 +48,7 @@ public:
static PassOwnPtr<SpeechRecognitionClientProxy> create(WebSpeechRecognizer*);
// SpeechRecognitionClient:
- virtual void start(SpeechRecognition*, const SpeechGrammarList*, const String& lang, const String& serviceURI, bool continuous, bool interimResults, unsigned long maxAlternatives, MediaStreamTrack*) override;
+ virtual void start(SpeechRecognition*, const SpeechGrammarList*, const String& lang, const KURL& serviceURI, bool continuous, bool interimResults, unsigned long maxAlternatives, MediaStreamTrack*) override;
virtual void stop(SpeechRecognition*) override;
virtual void abort(SpeechRecognition*) override;

Powered by Google App Engine
This is Rietveld 408576698