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

Unified Diff: Source/platform/exported/WebSpeechSynthesisVoice.cpp

Issue 458313005: Cleanup namespace usage from animation to exported in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup namespace usage from animation to exported in platform/ Created 6 years, 4 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/platform/exported/WebSpeechSynthesisVoice.cpp
diff --git a/Source/platform/exported/WebSpeechSynthesisVoice.cpp b/Source/platform/exported/WebSpeechSynthesisVoice.cpp
index 5fae6e03cefeeb608a2113242bd5a4d84132999b..eb6684ca366dfa66e76233cbfe4d8d4b898be687 100644
--- a/Source/platform/exported/WebSpeechSynthesisVoice.cpp
+++ b/Source/platform/exported/WebSpeechSynthesisVoice.cpp
@@ -32,7 +32,7 @@
namespace blink {
WebSpeechSynthesisVoice::WebSpeechSynthesisVoice()
- : m_private(blink::PlatformSpeechSynthesisVoice::create())
+ : m_private(PlatformSpeechSynthesisVoice::create())
{
}
@@ -71,7 +71,7 @@ void WebSpeechSynthesisVoice::setIsDefault(bool isDefault)
m_private->setIsDefault(isDefault);
}
-WebSpeechSynthesisVoice::operator blink::PlatformSpeechSynthesisVoice*() const
+WebSpeechSynthesisVoice::operator PlatformSpeechSynthesisVoice*() const
{
return m_private.get();
}
« no previous file with comments | « Source/platform/exported/WebSpeechSynthesisUtterance.cpp ('k') | Source/platform/exported/WebSpeechSynthesizerClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698