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

  /external/chromium/chrome/browser/extensions/
extension_tts_api.cc 20 const char kSpeechInterruptedError[] = "Utterance interrupted.";
21 const char kSpeechRemovedFromQueueError[] = "Utterance removed from queue.";
47 // Utterance
51 int Utterance::next_utterance_id_ = 0;
53 Utterance::Utterance(Profile* profile,
101 Utterance::~Utterance() {
105 void Utterance::FinishAndDestroy() {
131 void ExtensionTtsController::SpeakOrEnqueue(Utterance* utterance)
289 Utterance* utterance = utterance_queue_.front(); local
297 Utterance* utterance = utterance_queue_.front(); local
    [all...]
extension_tts_api.h 21 // Speak the given utterance with the given parameters if possible,
22 // and return true on success. Utterance will always be nonempty.
26 // The ExtensionTtsController will only try to speak one utterance at
31 const std::string& utterance,
57 // One speech utterance.
58 class Utterance {
60 // Construct an utterance given a profile, the text to speak,
62 // when the utterance is done speaking.
63 Utterance(Profile* profile,
67 ~Utterance();
    [all...]
  /external/chromium_org/chrome/browser/speech/
tts_controller.cc 66 // Utterance
70 int Utterance::next_utterance_id_ = 0;
72 Utterance::Utterance(Profile* profile)
83 Utterance::~Utterance() {
87 void Utterance::OnTtsEvent(TtsEventType event_type,
101 void Utterance::Finish() {
105 void Utterance::set_options(const Value* options) {
134 void TtsController::SpeakOrEnqueue(Utterance* utterance)
304 Utterance* utterance = utterance_queue_.front(); local
317 Utterance* utterance = utterance_queue_.front(); local
    [all...]
tts_controller.h 17 class Utterance;
45 // Returns true if this event type is one that indicates an utterance
49 // The continuous parameters that apply to a given utterance.
79 virtual void OnTtsEvent(Utterance* utterance,
93 // One speech utterance.
94 class Utterance {
96 // Construct an utterance given a profile and a completion task to call
97 // when the utterance is done speaking. Before speaking this utterance,
    [all...]

Completed in 44 milliseconds