X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fplatform%2Fexported%2FWebSpeechSynthesisVoice.cpp;h=eb6684ca366dfa66e76233cbfe4d8d4b898be687;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=ccad2b01f5bf67384903b1c8cd60c499023b6b81;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/platform/exported/WebSpeechSynthesisVoice.cpp b/src/third_party/WebKit/Source/platform/exported/WebSpeechSynthesisVoice.cpp index ccad2b0..eb6684c 100644 --- a/src/third_party/WebKit/Source/platform/exported/WebSpeechSynthesisVoice.cpp +++ b/src/third_party/WebKit/Source/platform/exported/WebSpeechSynthesisVoice.cpp @@ -28,12 +28,11 @@ #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(); }