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

Unified Diff: Source/web/SpeechRecognitionClientProxy.h

Issue 448163003: Support for providing media stream audio track to speech recognition (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: s/WebRTC/MediaStream/ Created 6 years, 3 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
« no previous file with comments | « Source/platform/RuntimeEnabledFeatures.in ('k') | Source/web/SpeechRecognitionClientProxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/SpeechRecognitionClientProxy.h
diff --git a/Source/web/SpeechRecognitionClientProxy.h b/Source/web/SpeechRecognitionClientProxy.h
index 4ce3cc323e499a9cc919c608c0e1f784b4bac332..082b5e7c6b322bd1ed8e1425d95054ccba1c22ac 100644
--- a/Source/web/SpeechRecognitionClientProxy.h
+++ b/Source/web/SpeechRecognitionClientProxy.h
@@ -34,6 +34,7 @@
namespace blink {
+class MediaStreamTrack;
class WebSpeechRecognizer;
class WebString;
@@ -46,7 +47,7 @@ public:
static PassOwnPtr<SpeechRecognitionClientProxy> create(WebSpeechRecognizer*);
// SpeechRecognitionClient:
- virtual void start(SpeechRecognition*, const SpeechGrammarList*, const String& lang, bool continuous, bool interimResults, unsigned long maxAlternatives) OVERRIDE;
+ virtual void start(SpeechRecognition*, const SpeechGrammarList*, const String& lang, bool continuous, bool interimResults, unsigned long maxAlternatives, MediaStreamTrack*) OVERRIDE;
virtual void stop(SpeechRecognition*) OVERRIDE;
virtual void abort(SpeechRecognition*) OVERRIDE;
« no previous file with comments | « Source/platform/RuntimeEnabledFeatures.in ('k') | Source/web/SpeechRecognitionClientProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698