chromium/content/browser/speech/tts_platform_impl.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

// static
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() {}

}  // namespace content