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

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

Issue 2752593003: Migrate WTF::Deque::first() to ::front() (Closed)
Patch Set: one more platform specific reference 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 bfcc6dfdeb2399d3ebeda3141ea22ec9a6eb17a1..0bae106cd6ceeae7e89032f0b7c42eda7b991a42 100644
--- a/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
+++ b/third_party/WebKit/Source/modules/speech/SpeechSynthesis.cpp
@@ -227,7 +227,7 @@ SpeechSynthesisUtterance* SpeechSynthesis::currentSpeechUtterance() const {
if (m_utteranceQueue.isEmpty())
return nullptr;
- return m_utteranceQueue.first();
+ return m_utteranceQueue.front();
}
const AtomicString& SpeechSynthesis::interfaceName() const {

Powered by Google App Engine
This is Rietveld 408576698