#include "content/browser/speech/tts_platform_impl.h"
#include "build/build_config.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/common/content_client.h"
#include <string>
#include "build/chromeos_buildflags.h"
namespace content {
TtsPlatform* TtsPlatform::GetInstance() { … }
void TtsPlatformImpl::LoadBuiltInTtsEngine(BrowserContext* browser_context) { … }
void TtsPlatformImpl::WillSpeakUtteranceWithVoice(TtsUtterance* utterance,
const VoiceData& voice_data) { … }
std::string TtsPlatformImpl::GetError() { … }
void TtsPlatformImpl::ClearError() { … }
void TtsPlatformImpl::SetError(const std::string& error) { … }
void TtsPlatformImpl::Shutdown() { … }
void TtsPlatformImpl::FinalizeVoiceOrdering(std::vector<VoiceData>& voices) { … }
ExternalPlatformDelegate* TtsPlatformImpl::GetExternalPlatformDelegate() { … }
}