Searched defs:m_platformUtterance (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesisUtterance.h46 const String& text() const { return m_platformUtterance->text(); }
47 void setText(const String& text) { m_platformUtterance->setText(text); }
49 const String& lang() const { return m_platformUtterance->lang(); }
50 void setLang(const String& lang) { m_platformUtterance->setLang(lang); }
55 float volume() const { return m_platformUtterance->volume(); }
56 void setVolume(float volume) { m_platformUtterance->setVolume(volume); }
58 float rate() const { return m_platformUtterance->rate(); }
59 void setRate(float rate) { m_platformUtterance->setRate(rate); }
61 float pitch() const { return m_platformUtterance->pitch(); }
62 void setPitch(float pitch) { m_platformUtterance
87 Member<PlatformSpeechSynthesisUtterance> m_platformUtterance; member in class:blink::FINAL
[all...]

Completed in 83 milliseconds