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

  /external/chromium_org/third_party/WebKit/Source/core/speech/
SpeechInputEvent.cpp 35 #include "core/speech/SpeechInputEvent.h"
41 PassRefPtr<SpeechInputEvent> SpeechInputEvent::create()
43 return adoptRef(new SpeechInputEvent);
46 PassRefPtr<SpeechInputEvent> SpeechInputEvent::create(const AtomicString& eventType, const SpeechInputResultArray& results)
48 return adoptRef(new SpeechInputEvent(eventType, results));
51 SpeechInputEvent::SpeechInputEvent()
56 SpeechInputEvent::SpeechInputEvent(const AtomicString& eventType, const SpeechInputResultArray& results
    [all...]
SpeechInputEvent.h 38 class SpeechInputEvent : public Event {
40 static PassRefPtr<SpeechInputEvent> create();
41 static PassRefPtr<SpeechInputEvent> create(const AtomicString& eventType, const SpeechInputResultArray& results);
42 ~SpeechInputEvent();
49 SpeechInputEvent();
50 SpeechInputEvent(const AtomicString& eventType, const SpeechInputResultArray& results);

Completed in 502 milliseconds