| Index: Source/core/platform/PlatformSpeechSynthesizer.cpp
|
| diff --git a/Source/core/platform/PlatformSpeechSynthesizer.cpp b/Source/core/platform/PlatformSpeechSynthesizer.cpp
|
| index 0744d834d0b63a70560ebb0a6a45d4fbedc96a7c..60a768333eb44d2c787ce98b270949493bb85644 100644
|
| --- a/Source/core/platform/PlatformSpeechSynthesizer.cpp
|
| +++ b/Source/core/platform/PlatformSpeechSynthesizer.cpp
|
| @@ -48,7 +48,7 @@ PlatformSpeechSynthesizer::PlatformSpeechSynthesizer(PlatformSpeechSynthesizerCl
|
| : m_speechSynthesizerClient(client)
|
| {
|
| m_webSpeechSynthesizerClient = adoptPtr(new WebSpeechSynthesizerClientImpl(this, client));
|
| - m_webSpeechSynthesizer = adoptPtr(WebKit::Platform::current()->createSpeechSynthesizer(m_webSpeechSynthesizerClient.get()));
|
| + m_webSpeechSynthesizer = adoptPtr(blink::Platform::current()->createSpeechSynthesizer(m_webSpeechSynthesizerClient.get()));
|
| }
|
|
|
| PlatformSpeechSynthesizer::~PlatformSpeechSynthesizer()
|
| @@ -60,7 +60,7 @@ void PlatformSpeechSynthesizer::speak(PassRefPtr<PlatformSpeechSynthesisUtteranc
|
| if (!m_webSpeechSynthesizer || !m_webSpeechSynthesizerClient)
|
| return;
|
|
|
| - m_webSpeechSynthesizer->speak(WebKit::WebSpeechSynthesisUtterance(utterance));
|
| + m_webSpeechSynthesizer->speak(blink::WebSpeechSynthesisUtterance(utterance));
|
| }
|
|
|
| void PlatformSpeechSynthesizer::pause()
|
|
|