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

  /external/chromium_org/third_party/WebKit/Source/core/speech/
SpeechInput.h 51 class SpeechInput : public SpeechInputListener, public Supplement<Page> {
52 WTF_MAKE_NONCOPYABLE(SpeechInput);
54 virtual ~SpeechInput();
56 static PassOwnPtr<SpeechInput> create(SpeechInputClient*);
58 static SpeechInput* from(Page* page) { return static_cast<SpeechInput*>(Supplement<Page>::from(page, supplementName())); }
79 explicit SpeechInput(SpeechInputClient*);
SpeechInput.cpp 32 #include "core/speech/SpeechInput.h"
41 SpeechInput::SpeechInput(SpeechInputClient* client)
48 SpeechInput::~SpeechInput()
53 PassOwnPtr<SpeechInput> SpeechInput::create(SpeechInputClient* client)
55 return adoptPtr(new SpeechInput(client));
58 int SpeechInput::registerListener(SpeechInputListener* listener)
70 void SpeechInput::unregisterListener(int listenerId
    [all...]

Completed in 2508 milliseconds