Index: Source/modules/speech/SpeechSynthesis.h |
diff --git a/Source/modules/speech/SpeechSynthesis.h b/Source/modules/speech/SpeechSynthesis.h |
index 0b8305f90e9faecb03b18c17f3ed52bdd9064a80..be3557a7c9ae53e240dff9dcb5caf6af0b3e3327 100644 |
--- a/Source/modules/speech/SpeechSynthesis.h |
+++ b/Source/modules/speech/SpeechSynthesis.h |
@@ -55,7 +55,7 @@ public: |
void pause(); |
void resume(); |
- const HeapVector<Member<SpeechSynthesisVoice> >& getVoices(); |
+ const HeapVector<Member<SpeechSynthesisVoice>>& getVoices(); |
// Used in testing to use a mock platform synthesizer |
void setPlatformSynthesizer(PlatformSpeechSynthesizer*); |
@@ -86,8 +86,8 @@ private: |
SpeechSynthesisUtterance* currentSpeechUtterance() const; |
Member<PlatformSpeechSynthesizer> m_platformSpeechSynthesizer; |
- HeapVector<Member<SpeechSynthesisVoice> > m_voiceList; |
- HeapDeque<Member<SpeechSynthesisUtterance> > m_utteranceQueue; |
+ HeapVector<Member<SpeechSynthesisVoice>> m_voiceList; |
+ HeapDeque<Member<SpeechSynthesisUtterance>> m_utteranceQueue; |
bool m_isPaused; |
// EventTarget |