| Index: Source/modules/speech/SpeechRecognition.h
|
| diff --git a/Source/modules/speech/SpeechRecognition.h b/Source/modules/speech/SpeechRecognition.h
|
| index 56417a068bb8fc39db4cebba90c807f0c87ffbe6..d4b664e400289ae4551c5306da42d2a697ec059e 100644
|
| --- a/Source/modules/speech/SpeechRecognition.h
|
| +++ b/Source/modules/speech/SpeechRecognition.h
|
| @@ -77,7 +77,7 @@ public:
|
| void didEndSpeech();
|
| void didEndSound();
|
| void didEndAudio();
|
| - void didReceiveResults(const HeapVector<Member<SpeechRecognitionResult> >& newFinalResults, const HeapVector<Member<SpeechRecognitionResult> >& currentInterimResults);
|
| + void didReceiveResults(const HeapVector<Member<SpeechRecognitionResult>>& newFinalResults, const HeapVector<Member<SpeechRecognitionResult>>& currentInterimResults);
|
| void didReceiveNoMatch(SpeechRecognitionResult*);
|
| void didReceiveError(PassRefPtrWillBeRawPtr<SpeechRecognitionError>);
|
| void didStart();
|
| @@ -119,7 +119,7 @@ private:
|
| bool m_stoppedByActiveDOMObject;
|
| bool m_started;
|
| bool m_stopping;
|
| - HeapVector<Member<SpeechRecognitionResult> > m_finalResults;
|
| + HeapVector<Member<SpeechRecognitionResult>> m_finalResults;
|
| };
|
|
|
| } // namespace blink
|
|
|