HomeSort by relevance Sort by last modified time
    Searched defs:SpeechSynthesisEvent (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesisEvent.cpp 27 #include "modules/speech/SpeechSynthesisEvent.h"
31 PassRefPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create()
33 return adoptRef(new SpeechSynthesisEvent());
36 PassRefPtr<SpeechSynthesisEvent> SpeechSynthesisEvent::create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name)
38 return adoptRef(new SpeechSynthesisEvent(type, charIndex, elapsedTime, name));
41 SpeechSynthesisEvent::SpeechSynthesisEvent()
46 SpeechSynthesisEvent::SpeechSynthesisEvent(const AtomicString& type, unsigned long charIndex, float elapsedTime, const (…)
    [all...]
SpeechSynthesisEvent.h 34 class SpeechSynthesisEvent : public Event {
36 static PassRefPtr<SpeechSynthesisEvent> create();
37 static PassRefPtr<SpeechSynthesisEvent> create(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name);
46 SpeechSynthesisEvent();
47 SpeechSynthesisEvent(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name);

Completed in 45 milliseconds