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

Unified Diff: Source/modules/speech/SpeechRecognitionController.h

Issue 1211973002: Revert of Adding a serviceURI param to SpeechRecognition Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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/modules/speech/SpeechRecognitionClient.h ('k') | Source/web/SpeechRecognitionClientProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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); }
« no previous file with comments | « Source/modules/speech/SpeechRecognitionClient.h ('k') | Source/web/SpeechRecognitionClientProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698