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

  /external/chromium/chrome/browser/extensions/
extension_tts_api_mac.mm 38 NSSpeechSynthesizer* speech_synthesizer_;
62 [speech_synthesizer_
69 [speech_synthesizer_
75 [speech_synthesizer_
80 return [speech_synthesizer_ startSpeakingString:
85 [speech_synthesizer_ stopSpeaking];
90 return [speech_synthesizer_ isSpeaking];
94 speech_synthesizer_ = [[NSSpeechSynthesizer alloc] init];
extension_tts_api_win.cc 40 base::win::ScopedComPtr<ISpVoice> speech_synthesizer_; member in class:ExtensionTtsPlatformImplWin
62 if (!speech_synthesizer_)
70 speech_synthesizer_->SetRate(static_cast<int32>(rate * 20 - 10));
85 speech_synthesizer_->SetVolume(static_cast<uint16>(volume * 100));
89 speech_synthesizer_->Resume();
92 speech_synthesizer_->Speak(
99 if (speech_synthesizer_ && !paused_) {
100 speech_synthesizer_->Pause();
107 if (speech_synthesizer_ && !paused_) {
109 HRESULT result = speech_synthesizer_->GetStatus(&status, NULL)
    [all...]

Completed in 60 milliseconds