| Index: Source/modules/speech/SpeechRecognition.h
|
| diff --git a/Source/modules/speech/SpeechRecognition.h b/Source/modules/speech/SpeechRecognition.h
|
| index 07eb247996c634f2f1b093db42ee343ec85f045d..81da6896aea952814b35924a5235abd2f1a765f4 100644
|
| --- a/Source/modules/speech/SpeechRecognition.h
|
| +++ b/Source/modules/speech/SpeechRecognition.h
|
| @@ -58,8 +58,6 @@
|
| void setGrammars(SpeechGrammarList* grammars) { m_grammars = grammars; }
|
| String lang() { return m_lang; }
|
| void setLang(const String& lang) { m_lang = lang; }
|
| - String serviceURI() { return m_serviceURI; }
|
| - void setServiceURI(const String& serviceURI) { m_serviceURI = serviceURI; }
|
| bool continuous() { return m_continuous; }
|
| void setContinuous(bool continuous) { m_continuous = continuous; }
|
| bool interimResults() { return m_interimResults; }
|
| @@ -118,7 +116,6 @@
|
| Member<SpeechGrammarList> m_grammars;
|
| Member<MediaStreamTrack> m_audioTrack;
|
| String m_lang;
|
| - String m_serviceURI;
|
| bool m_continuous;
|
| bool m_interimResults;
|
| unsigned long m_maxAlternatives;
|
|
|