Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(978)

Unified Diff: third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp

Issue 2743023002: Migrate WTF::Deque::append() to ::push_back() (Closed)
Patch Set: rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698