| Index: third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
|
| diff --git a/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp b/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
|
| index d4b91e10256544f66d5899a6ca0bb6552c33bc6c..50d0463d4c371c9bb13f28fdc8a23129d6354df3 100644
|
| --- a/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
|
| +++ b/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
|
| @@ -96,7 +96,7 @@ void SpeechSynthesis::startSpeakingImmediately() {
|
| void SpeechSynthesis::speak(SpeechSynthesisUtterance* utterance) {
|
| ASSERT(utterance);
|
|
|
| - m_utteranceQueue.append(utterance);
|
| + m_utteranceQueue.push_back(utterance);
|
|
|
| // If the queue was empty, speak this immediately.
|
| if (m_utteranceQueue.size() == 1)
|
|
|