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