| Index: Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp
|
| diff --git a/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp b/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp
|
| index e5e1cd98db0200b4ec3d6679bf1eb42fd45df756..fa3d9ddec84aa7fb6407080f2c034d853fc8cc59 100644
|
| --- a/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp
|
| +++ b/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp
|
| @@ -42,7 +42,7 @@ WebSpeechSynthesizerClientImpl::~WebSpeechSynthesizerClientImpl()
|
|
|
| void WebSpeechSynthesizerClientImpl::setVoiceList(const WebVector<WebSpeechSynthesisVoice>& voices)
|
| {
|
| - HeapVector<Member<PlatformSpeechSynthesisVoice> > outVoices;
|
| + HeapVector<Member<PlatformSpeechSynthesisVoice>> outVoices;
|
| for (size_t i = 0; i < voices.size(); i++)
|
| outVoices.append(voices[i]);
|
| m_synthesizer->setVoiceList(outVoices);
|
|
|