HomeSort by relevance Sort by last modified time
    Searched refs:WebSpeechSynthesisUtterance (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/WebKit/public/platform/
WebSpeechSynthesizerClient.h 29 #include "WebSpeechSynthesisUtterance.h"
40 virtual void didStartSpeaking(const WebSpeechSynthesisUtterance&) = 0;
41 virtual void didPauseSpeaking(const WebSpeechSynthesisUtterance&) = 0;
42 virtual void didResumeSpeaking(const WebSpeechSynthesisUtterance&) = 0;
43 virtual void didFinishSpeaking(const WebSpeechSynthesisUtterance&) = 0;
44 virtual void speakingErrorOccurred(const WebSpeechSynthesisUtterance&) = 0;
45 virtual void wordBoundaryEventOccurred(const WebSpeechSynthesisUtterance&, unsigned charIndex) = 0;
46 virtual void sentenceBoundaryEventOccurred(const WebSpeechSynthesisUtterance&, unsigned charIndex) = 0;
WebSpeechSynthesizer.h 34 class WebSpeechSynthesisUtterance;
43 virtual void speak(const WebSpeechSynthesisUtterance&) = 0;
WebSpeechSynthesisUtterance.h 37 class WebSpeechSynthesisUtterance {
39 WebSpeechSynthesisUtterance() { }
40 WebSpeechSynthesisUtterance(const WebSpeechSynthesisUtterance& other) { assign(other); }
41 ~WebSpeechSynthesisUtterance() { reset(); }
43 WebSpeechSynthesisUtterance& operator=(const WebSpeechSynthesisUtterance& other)
49 WEBKIT_EXPORT void assign(const WebSpeechSynthesisUtterance&);
65 WebSpeechSynthesisUtterance(const PassRefPtr<WebCore::PlatformSpeechSynthesisUtterance>&);
66 WebSpeechSynthesisUtterance& operator=(WebCore::PlatformSpeechSynthesisUtterance*)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebSpeechSynthesisUtterance.cpp 28 #include "public/platform/WebSpeechSynthesisUtterance.h"
38 WebSpeechSynthesisUtterance::WebSpeechSynthesisUtterance(const PassRefPtr<PlatformSpeechSynthesisUtterance>& utterance)
43 WebSpeechSynthesisUtterance& WebSpeechSynthesisUtterance::operator=(WebCore::PlatformSpeechSynthesisUtterance* utterance)
49 void WebSpeechSynthesisUtterance::assign(const WebSpeechSynthesisUtterance& other)
54 void WebSpeechSynthesisUtterance::reset()
59 WebSpeechSynthesisUtterance::operator PassRefPtr<PlatformSpeechSynthesisUtterance>() const
64 WebSpeechSynthesisUtterance::operator PlatformSpeechSynthesisUtterance*() cons
    [all...]
WebSpeechSynthesizerClientImpl.h 30 #include "public/platform/WebSpeechSynthesisUtterance.h"
47 virtual void didStartSpeaking(const WebKit::WebSpeechSynthesisUtterance&);
48 virtual void didFinishSpeaking(const WebKit::WebSpeechSynthesisUtterance&);
49 virtual void didPauseSpeaking(const WebKit::WebSpeechSynthesisUtterance&);
50 virtual void didResumeSpeaking(const WebKit::WebSpeechSynthesisUtterance&);
51 virtual void speakingErrorOccurred(const WebKit::WebSpeechSynthesisUtterance&);
52 virtual void wordBoundaryEventOccurred(const WebKit::WebSpeechSynthesisUtterance&, unsigned charIndex);
53 virtual void sentenceBoundaryEventOccurred(const WebKit::WebSpeechSynthesisUtterance&, unsigned charIndex);
WebSpeechSynthesizerClientImpl.cpp 52 void WebSpeechSynthesizerClientImpl::didStartSpeaking(const WebKit::WebSpeechSynthesisUtterance& utterance)
57 void WebSpeechSynthesizerClientImpl::didFinishSpeaking(const WebKit::WebSpeechSynthesisUtterance& utterance)
62 void WebSpeechSynthesizerClientImpl::didPauseSpeaking(const WebKit::WebSpeechSynthesisUtterance& utterance)
67 void WebSpeechSynthesizerClientImpl::didResumeSpeaking(const WebKit::WebSpeechSynthesisUtterance& utterance)
72 void WebSpeechSynthesizerClientImpl::speakingErrorOccurred(const WebKit::WebSpeechSynthesisUtterance& utterance)
77 void WebSpeechSynthesizerClientImpl::wordBoundaryEventOccurred(const WebKit::WebSpeechSynthesisUtterance& utterance, unsigned charIndex)
82 void WebSpeechSynthesizerClientImpl::sentenceBoundaryEventOccurred(const WebKit::WebSpeechSynthesisUtterance& utterance, unsigned charIndex)
  /external/chromium_org/chrome/renderer/
tts_dispatcher.h 40 virtual void speak(const WebKit::WebSpeechSynthesisUtterance& utterance)
46 WebKit::WebSpeechSynthesisUtterance FindUtterance(int utterance_id);
69 base::hash_map<int, WebKit::WebSpeechSynthesisUtterance> utterance_id_map_;
tts_dispatcher.cc 13 #include "third_party/WebKit/public/platform/WebSpeechSynthesisUtterance.h"
20 using WebKit::WebSpeechSynthesisUtterance;
59 void TtsDispatcher::speak(const WebSpeechSynthesisUtterance& web_utterance) {
87 WebSpeechSynthesisUtterance TtsDispatcher::FindUtterance(int utterance_id) {
88 base::hash_map<int, WebSpeechSynthesisUtterance>::const_iterator iter =
91 return WebSpeechSynthesisUtterance();
112 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
120 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
129 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id);
137 WebSpeechSynthesisUtterance utterance = FindUtterance(utterance_id)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
PlatformSpeechSynthesizerChromium.cpp 38 #include "public/platform/WebSpeechSynthesisUtterance.h"
67 m_webSpeechSynthesizer->speak(WebKit::WebSpeechSynthesisUtterance(utterance));
  /external/chromium_org/third_party/WebKit/Source/web/
webkit.target.darwin-arm.mk 63 third_party/WebKit/Source/core/platform/chromium/support/WebSpeechSynthesisUtterance.cpp \
webkit.target.darwin-mips.mk 63 third_party/WebKit/Source/core/platform/chromium/support/WebSpeechSynthesisUtterance.cpp \
webkit.target.darwin-x86.mk 63 third_party/WebKit/Source/core/platform/chromium/support/WebSpeechSynthesisUtterance.cpp \
webkit.target.linux-arm.mk 63 third_party/WebKit/Source/core/platform/chromium/support/WebSpeechSynthesisUtterance.cpp \
webkit.target.linux-mips.mk 63 third_party/WebKit/Source/core/platform/chromium/support/WebSpeechSynthesisUtterance.cpp \
webkit.target.linux-x86.mk 63 third_party/WebKit/Source/core/platform/chromium/support/WebSpeechSynthesisUtterance.cpp \

Completed in 114 milliseconds