Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / platform / exported / WebSpeechSynthesisVoice.cpp
index ccad2b0..eb6684c 100644 (file)
 
 #include "platform/speech/PlatformSpeechSynthesisVoice.h"
 #include "wtf/PassRefPtr.h"
-#include "wtf/Vector.h"
 
 namespace blink {
 
 WebSpeechSynthesisVoice::WebSpeechSynthesisVoice()
-    : m_private(WebCore::PlatformSpeechSynthesisVoice::create())
+    : m_private(PlatformSpeechSynthesisVoice::create())
 {
 }
 
@@ -72,7 +71,7 @@ void WebSpeechSynthesisVoice::setIsDefault(bool isDefault)
     m_private->setIsDefault(isDefault);
 }
 
-WebSpeechSynthesisVoice::operator WebCore::PlatformSpeechSynthesisVoice*() const
+WebSpeechSynthesisVoice::operator PlatformSpeechSynthesisVoice*() const
 {
     return m_private.get();
 }