Index: Source/modules/speech/SpeechSynthesis.cpp |
diff --git a/Source/modules/speech/SpeechSynthesis.cpp b/Source/modules/speech/SpeechSynthesis.cpp |
index 779b4c7f4eaffb9529d5902c58b2e54b1e3ffc1b..56d1c240c736cf018b8dd18c60a3974706125384 100644 |
--- a/Source/modules/speech/SpeechSynthesis.cpp |
+++ b/Source/modules/speech/SpeechSynthesis.cpp |
@@ -63,13 +63,13 @@ void SpeechSynthesis::voicesDidChange() |
dispatchEvent(Event::create(EventTypeNames::voiceschanged)); |
} |
-const HeapVector<Member<SpeechSynthesisVoice> >& SpeechSynthesis::getVoices() |
+const HeapVector<Member<SpeechSynthesisVoice>>& SpeechSynthesis::getVoices() |
{ |
if (m_voiceList.size()) |
return m_voiceList; |
// If the voiceList is empty, that's the cue to get the voices from the platform again. |
- const HeapVector<Member<PlatformSpeechSynthesisVoice> >& platformVoices = m_platformSpeechSynthesizer->voiceList(); |
+ const HeapVector<Member<PlatformSpeechSynthesisVoice>>& platformVoices = m_platformSpeechSynthesizer->voiceList(); |
size_t voiceCount = platformVoices.size(); |
for (size_t k = 0; k < voiceCount; k++) |
m_voiceList.append(SpeechSynthesisVoice::create(platformVoices[k].get())); |