| Index: Source/platform/exported/WebSpeechSynthesisUtterance.cpp
|
| diff --git a/Source/platform/exported/WebSpeechSynthesisUtterance.cpp b/Source/platform/exported/WebSpeechSynthesisUtterance.cpp
|
| index 8c394987641fc6edb7d59a47bc13d11ee7fa1f15..56f26b7b563d9703e05330746227f402cbb67917 100644
|
| --- a/Source/platform/exported/WebSpeechSynthesisUtterance.cpp
|
| +++ b/Source/platform/exported/WebSpeechSynthesisUtterance.cpp
|
| @@ -31,16 +31,16 @@
|
| #include "wtf/PassRefPtr.h"
|
| #include "wtf/RefPtr.h"
|
|
|
| -using namespace WebCore;
|
| +using namespace blink;
|
|
|
| namespace blink {
|
|
|
| -WebSpeechSynthesisUtterance::WebSpeechSynthesisUtterance(WebCore::PlatformSpeechSynthesisUtterance* utterance)
|
| +WebSpeechSynthesisUtterance::WebSpeechSynthesisUtterance(blink::PlatformSpeechSynthesisUtterance* utterance)
|
| : m_private(utterance)
|
| {
|
| }
|
|
|
| -WebSpeechSynthesisUtterance& WebSpeechSynthesisUtterance::operator=(WebCore::PlatformSpeechSynthesisUtterance* utterance)
|
| +WebSpeechSynthesisUtterance& WebSpeechSynthesisUtterance::operator=(blink::PlatformSpeechSynthesisUtterance* utterance)
|
| {
|
| m_private = utterance;
|
| return *this;
|
|
|