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

  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.cpp 91 return m_utteranceQueue.size() > 1;
116 m_utteranceQueue.append(utterance);
119 if (m_utteranceQueue.size() == 1)
128 m_utteranceQueue.clear();
159 m_utteranceQueue.removeFirst();
160 shouldStartSpeaking = !!m_utteranceQueue.size();
170 if (shouldStartSpeaking && !m_utteranceQueue.isEmpty())
225 if (!m_utteranceQueue.isEmpty())
226 return m_utteranceQueue.first().get();
239 visitor->trace(m_utteranceQueue);
    [all...]
SpeechSynthesis.h 90 HeapDeque<Member<SpeechSynthesisUtterance> > m_utteranceQueue;

Completed in 181 milliseconds