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

Unified Diff: Source/modules/speech/DOMWindowSpeechSynthesis.cpp

Issue 884973003: Extend PlatformSpeechSynthesizerMock with an utterance queue. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: minor test tidying Created 5 years, 11 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: Source/modules/speech/DOMWindowSpeechSynthesis.cpp
diff --git a/Source/modules/speech/DOMWindowSpeechSynthesis.cpp b/Source/modules/speech/DOMWindowSpeechSynthesis.cpp
index bd0cb9f8a81e00d5670f4d1238880ad7794df9e8..bddd3dac311dbf9d5436bc0940963d798880f617 100644
--- a/Source/modules/speech/DOMWindowSpeechSynthesis.cpp
+++ b/Source/modules/speech/DOMWindowSpeechSynthesis.cpp
@@ -70,7 +70,7 @@ SpeechSynthesis* DOMWindowSpeechSynthesis::speechSynthesis()
{
if (!m_speechSynthesis && frame())
m_speechSynthesis = SpeechSynthesis::create(frame()->domWindow()->executionContext());
- return m_speechSynthesis.get();
+ return m_speechSynthesis;
}
void DOMWindowSpeechSynthesis::trace(Visitor* visitor)

Powered by Google App Engine
This is Rietveld 408576698