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

Unified Diff: Source/core/platform/PlatformSpeechSynthesizer.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « Source/core/platform/PlatformSpeechSynthesizer.h ('k') | Source/core/platform/ScrollbarThemeGtkOrAura.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()
« no previous file with comments | « Source/core/platform/PlatformSpeechSynthesizer.h ('k') | Source/core/platform/ScrollbarThemeGtkOrAura.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698