Index: Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h |
diff --git a/Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h b/Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h |
index 91681a1ca904d063b79ead2403260c67ce5288b3..f70c2d2219808b611b8d6b987ff697d13596c716 100644 |
--- a/Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h |
+++ b/Source/core/platform/chromium/support/WebSpeechSynthesizerClientImpl.h |
@@ -38,19 +38,19 @@ namespace WebCore { |
class PlatformSpeechSynthesizer; |
class PlatformSpeechSynthesizerClient; |
-class WebSpeechSynthesizerClientImpl : public WebKit::WebSpeechSynthesizerClient { |
+class WebSpeechSynthesizerClientImpl : public blink::WebSpeechSynthesizerClient { |
public: |
explicit WebSpeechSynthesizerClientImpl(PlatformSpeechSynthesizer*, PlatformSpeechSynthesizerClient*); |
virtual ~WebSpeechSynthesizerClientImpl(); |
- virtual void setVoiceList(const WebKit::WebVector<WebKit::WebSpeechSynthesisVoice>& voices); |
- virtual void didStartSpeaking(const WebKit::WebSpeechSynthesisUtterance&); |
- virtual void didFinishSpeaking(const WebKit::WebSpeechSynthesisUtterance&); |
- virtual void didPauseSpeaking(const WebKit::WebSpeechSynthesisUtterance&); |
- virtual void didResumeSpeaking(const WebKit::WebSpeechSynthesisUtterance&); |
- virtual void speakingErrorOccurred(const WebKit::WebSpeechSynthesisUtterance&); |
- virtual void wordBoundaryEventOccurred(const WebKit::WebSpeechSynthesisUtterance&, unsigned charIndex); |
- virtual void sentenceBoundaryEventOccurred(const WebKit::WebSpeechSynthesisUtterance&, unsigned charIndex); |
+ virtual void setVoiceList(const blink::WebVector<blink::WebSpeechSynthesisVoice>& voices); |
+ virtual void didStartSpeaking(const blink::WebSpeechSynthesisUtterance&); |
+ virtual void didFinishSpeaking(const blink::WebSpeechSynthesisUtterance&); |
+ virtual void didPauseSpeaking(const blink::WebSpeechSynthesisUtterance&); |
+ virtual void didResumeSpeaking(const blink::WebSpeechSynthesisUtterance&); |
+ virtual void speakingErrorOccurred(const blink::WebSpeechSynthesisUtterance&); |
+ virtual void wordBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance&, unsigned charIndex); |
+ virtual void sentenceBoundaryEventOccurred(const blink::WebSpeechSynthesisUtterance&, unsigned charIndex); |
private: |
PlatformSpeechSynthesizer* m_synthesizer; |