| Index: third_party/WebKit/Source/modules/speech/SpeechRecognition.h
|
| diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognition.h b/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
|
| index 83025450806d7483c2a0a82fcda1296cdb73afe3..741f2b7f730e86d36947ece6b0c31fe350b66645 100644
|
| --- a/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
|
| +++ b/third_party/WebKit/Source/modules/speech/SpeechRecognition.h
|
| @@ -67,8 +67,8 @@ public:
|
| void setInterimResults(bool interimResults) { m_interimResults = interimResults; }
|
| unsigned maxAlternatives() { return m_maxAlternatives; }
|
| void setMaxAlternatives(unsigned maxAlternatives) { m_maxAlternatives = maxAlternatives; }
|
| - MediaStreamTrack* audioTrack() const;
|
| - void setAudioTrack(MediaStreamTrack*);
|
| + MediaStreamTrack* audioTrack() { return m_audioTrack; }
|
| + void setAudioTrack(MediaStreamTrack* audioTrack) { m_audioTrack = audioTrack; }
|
|
|
| // Callable by the user.
|
| void start(ExceptionState&);
|
|
|