| Index: Source/platform/exported/WebSpeechSynthesizerClientImpl.h
|
| diff --git a/Source/platform/exported/WebSpeechSynthesizerClientImpl.h b/Source/platform/exported/WebSpeechSynthesizerClientImpl.h
|
| index b524e4a96c4eb1020fbaeb22d9de7546087d6274..29b829ae8e735cebbd57c3a16d783b22416d6824 100644
|
| --- a/Source/platform/exported/WebSpeechSynthesizerClientImpl.h
|
| +++ b/Source/platform/exported/WebSpeechSynthesizerClientImpl.h
|
| @@ -37,19 +37,19 @@ namespace blink {
|
| class PlatformSpeechSynthesizer;
|
| class PlatformSpeechSynthesizerClient;
|
|
|
| -class WebSpeechSynthesizerClientImpl FINAL : public GarbageCollectedFinalized<WebSpeechSynthesizerClientImpl>, public blink::WebSpeechSynthesizerClient {
|
| +class WebSpeechSynthesizerClientImpl FINAL : public GarbageCollectedFinalized<WebSpeechSynthesizerClientImpl>, public WebSpeechSynthesizerClient {
|
| public:
|
| WebSpeechSynthesizerClientImpl(PlatformSpeechSynthesizer*, PlatformSpeechSynthesizerClient*);
|
| virtual ~WebSpeechSynthesizerClientImpl();
|
|
|
| - 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);
|
| + virtual void setVoiceList(const WebVector<WebSpeechSynthesisVoice>& voices);
|
| + virtual void didStartSpeaking(const WebSpeechSynthesisUtterance&);
|
| + virtual void didFinishSpeaking(const WebSpeechSynthesisUtterance&);
|
| + virtual void didPauseSpeaking(const WebSpeechSynthesisUtterance&);
|
| + virtual void didResumeSpeaking(const WebSpeechSynthesisUtterance&);
|
| + virtual void speakingErrorOccurred(const WebSpeechSynthesisUtterance&);
|
| + virtual void wordBoundaryEventOccurred(const WebSpeechSynthesisUtterance&, unsigned charIndex);
|
| + virtual void sentenceBoundaryEventOccurred(const WebSpeechSynthesisUtterance&, unsigned charIndex);
|
|
|
| void trace(Visitor*);
|
|
|
|
|