Index: Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp |
diff --git a/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp b/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp |
index c48f2ff10074b6c2c6beb4209e06bd1bb47f6607..e5e1cd98db0200b4ec3d6679bf1eb42fd45df756 100644 |
--- a/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp |
+++ b/Source/platform/exported/WebSpeechSynthesizerClientImpl.cpp |
@@ -40,7 +40,7 @@ WebSpeechSynthesizerClientImpl::~WebSpeechSynthesizerClientImpl() |
{ |
} |
-void WebSpeechSynthesizerClientImpl::setVoiceList(const blink::WebVector<blink::WebSpeechSynthesisVoice>& voices) |
+void WebSpeechSynthesizerClientImpl::setVoiceList(const WebVector<WebSpeechSynthesisVoice>& voices) |
{ |
HeapVector<Member<PlatformSpeechSynthesisVoice> > outVoices; |
for (size_t i = 0; i < voices.size(); i++) |
@@ -49,37 +49,37 @@ void WebSpeechSynthesizerClientImpl::setVoiceList(const blink::WebVector<blink:: |
m_client->voicesDidChange(); |
} |
-void WebSpeechSynthesizerClientImpl::didStartSpeaking(const blink::WebSpeechSynthesisUtterance& utterance) |
+void WebSpeechSynthesizerClientImpl::didStartSpeaking(const WebSpeechSynthesisUtterance& utterance) |
{ |
m_client->didStartSpeaking(utterance); |
} |
-void WebSpeechSynthesizerClientImpl::didFinishSpeaking(const blink::WebSpeechSynthesisUtterance& utterance) |
+void WebSpeechSynthesizerClientImpl::didFinishSpeaking(const WebSpeechSynthesisUtterance& utterance) |
{ |
m_client->didFinishSpeaking(utterance); |
} |
-void WebSpeechSynthesizerClientImpl::didPauseSpeaking(const blink::WebSpeechSynthesisUtterance& utterance) |
+void WebSpeechSynthesizerClientImpl::didPauseSpeaking(const WebSpeechSynthesisUtterance& utterance) |
{ |
m_client->didPauseSpeaking(utterance); |
} |
-void WebSpeechSynthesizerClientImpl::didResumeSpeaking(const blink::WebSpeechSynthesisUtterance& utterance) |
+void WebSpeechSynthesizerClientImpl::didResumeSpeaking(const WebSpeechSynthesisUtterance& utterance) |
{ |
m_client->didResumeSpeaking(utterance); |
} |
-void WebSpeechSynthesizerClientImpl::speakingErrorOccurred(const blink::WebSpeechSynthesisUtterance& utterance) |
+void WebSpeechSynthesizerClientImpl::speakingErrorOccurred(const WebSpeechSynthesisUtterance& utterance) |
{ |
m_client->speakingErrorOccurred(utterance); |
} |
-void WebSpeechSynthesizerClientImpl::wordBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance& utterance, unsigned charIndex) |
+void WebSpeechSynthesizerClientImpl::wordBoundaryEventOccurred(const WebSpeechSynthesisUtterance& utterance, unsigned charIndex) |
{ |
m_client->boundaryEventOccurred(utterance, SpeechWordBoundary, charIndex); |
} |
-void WebSpeechSynthesizerClientImpl::sentenceBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance& utterance, unsigned charIndex) |
+void WebSpeechSynthesizerClientImpl::sentenceBoundaryEventOccurred(const WebSpeechSynthesisUtterance& utterance, unsigned charIndex) |
{ |
m_client->boundaryEventOccurred(utterance, SpeechSentenceBoundary, charIndex); |
} |