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

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: Adding layout tests and forward declaring KURL Created 5 years, 7 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..367e2d3d344b28a409757b7b5aa42f84d4d5b2c3 100644
--- a/Source/web/SpeechRecognitionClientProxy.h
+++ b/Source/web/SpeechRecognitionClientProxy.h
@@ -34,6 +34,7 @@
namespace blink {
+class KURL;
class MediaStreamTrack;
class WebSpeechRecognizer;
class WebString;
@@ -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