chromium/content/browser/speech/speech_synthesis_impl.h

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

#ifndef CONTENT_BROWSER_SPEECH_SPEECH_SYNTHESIS_IMPL_H_
#define CONTENT_BROWSER_SPEECH_SPEECH_SYNTHESIS_IMPL_H_

#include "base/memory/raw_ptr.h"
#include "content/public/browser/tts_controller.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "mojo/public/cpp/bindings/remote_set.h"
#include "third_party/blink/public/mojom/speech/speech_synthesis.mojom.h"

namespace content {
class BrowserContext;
class RenderFrameHostImpl;

// Back-end for the web speech synthesis API; dispatches speech requests to
// content::TtsController and forwards voice lists and events back to the
// requesting renderer.
class SpeechSynthesisImpl : public blink::mojom::SpeechSynthesis,
                            public VoicesChangedDelegate {};

}  // namespace content

#endif  // CONTENT_BROWSER_SPEECH_SPEECH_SYNTHESIS_IMPL_H_