OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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);
43
virtual const AtomicString& interfaceName() const { return EventNames::
SpeechSynthesisEvent
; }
46
SpeechSynthesisEvent
();
47
SpeechSynthesisEvent
(const AtomicString& type, unsigned long charIndex, float elapsedTime, const String& name);
Completed in 614 milliseconds