| 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();
|
| }
|
|
|