blob: 96a13c91fbbd8162fb46b0d78a14a5174a0c7dfd [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_SPEECH_MONITOR_H_
#define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_SPEECH_MONITOR_H_
#include "base/containers/circular_deque.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "content/public/browser/tts_platform.h"
#include "content/public/test/test_utils.h"
// TODO(katie): This may need to move into Content as part of the TTS refactor.
namespace chromeos {
// For testing purpose installs itself as the platform speech synthesis engine,
// allowing it to intercept all speech calls, and then provides a method to
// block until the next utterance is spoken.
class SpeechMonitor : public content::TtsPlatform {
public:
SpeechMonitor();
virtual ~SpeechMonitor();
// Blocks until the next utterance is spoken, and returns its text.
std::string GetNextUtterance();
// Wait for next utterance and return true if next utterance is ChromeVox
// enabled message.
bool SkipChromeVoxEnabledMessage();
bool SkipChromeVoxMessage(const std::string& message);
// Returns true if StopSpeaking() was called on TtsController.
bool DidStop();
// Blocks until StopSpeaking() is called on TtsController.
void BlockUntilStop();
private:
// TtsPlatform implementation.
bool PlatformImplAvailable() override;
bool Speak(int utterance_id,
const std::string& utterance,
const std::string& lang,
const content::VoiceData& voice,
const content::UtteranceContinuousParameters& params) override;
bool StopSpeaking() override;
bool IsSpeaking() override;
void GetVoices(std::vector<content::VoiceData>* out_voices) override;
void Pause() override {}
void Resume() override {}
void WillSpeakUtteranceWithVoice(
const content::TtsUtterance* utterance,
const content::VoiceData& voice_data) override;
bool LoadBuiltInTtsEngine(content::BrowserContext* browser_context) override;
std::string GetError() override;
void ClearError() override;
void SetError(const std::string& error) override;
scoped_refptr<content::MessageLoopRunner> loop_runner_;
base::circular_deque<std::string> utterance_queue_;
bool did_stop_ = false;
std::string error_;
DISALLOW_COPY_AND_ASSIGN(SpeechMonitor);
};
} // namespace chromeos
#endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_SPEECH_MONITOR_H_