#ifndef CONTENT_PUBLIC_BROWSER_TTS_CONTROLLER_H_
#define CONTENT_PUBLIC_BROWSER_TTS_CONTROLLER_H_
#include <memory>
#include <queue>
#include <set>
#include <string>
#include <vector>
#include "base/functional/callback_forward.h"
#include "base/memory/singleton.h"
#include "base/observer_list_types.h"
#include "base/scoped_observation_traits.h"
#include "build/chromeos_buildflags.h"
#include "content/common/content_export.h"
#include "content/public/browser/tts_utterance.h"
#include "url/gurl.h"
namespace content {
class BrowserContext;
class TtsPlatform;
struct CONTENT_EXPORT VoiceData { … };
class CONTENT_EXPORT TtsEngineDelegate { … };
class CONTENT_EXPORT RemoteTtsEngineDelegate { … };
class CONTENT_EXPORT VoicesChangedDelegate : public base::CheckedObserver { … };
class CONTENT_EXPORT TtsController { … };
}
namespace base {
template <>
struct ScopedObservationTraits<content::TtsController,
content::VoicesChangedDelegate> { … };
}
#endif