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

  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechGrammar.cpp 28 #include "modules/speech/SpeechGrammar.h"
34 PassRefPtr<SpeechGrammar> SpeechGrammar::create()
36 return adoptRef(new SpeechGrammar);
39 PassRefPtr<SpeechGrammar> SpeechGrammar::create(const KURL& src, double weight)
41 return adoptRef(new SpeechGrammar(src, weight));
44 void SpeechGrammar::setSrc(ExecutionContext* executionContext, const String& src)
50 SpeechGrammar::SpeechGrammar()
    [all...]
SpeechGrammar.h 38 class SpeechGrammar : public ScriptWrappable, public RefCounted<SpeechGrammar> {
40 static PassRefPtr<SpeechGrammar> create(); // FIXME: The spec is not clear on what the constructor should look like.
41 static PassRefPtr<SpeechGrammar> create(const KURL& src, double weight);
51 SpeechGrammar();
52 SpeechGrammar(const KURL& src, double weight);

Completed in 129 milliseconds