#ifndef CHROME_BROWSER_SPEECH_SPEECH_RECOGNITION_CLIENT_BROWSER_INTERFACE_H_
#define CHROME_BROWSER_SPEECH_SPEECH_RECOGNITION_CLIENT_BROWSER_INTERFACE_H_
#include "base/memory/raw_ptr.h"
#include "components/keyed_service/core/keyed_service.h"
#include "components/soda/constants.h"
#include "components/soda/soda_installer.h"
#include "media/mojo/mojom/speech_recognition.mojom.h"
#include "mojo/public/cpp/bindings/receiver_set.h"
#include "mojo/public/cpp/bindings/remote_set.h"
#include "mojo/public/cpp/bindings/unique_receiver_set.h"
class PrefChangeRegistrar;
class PrefService;
namespace captions {
class LiveCaptionController;
}
namespace content {
class BrowserContext;
}
namespace speech {
class SpeechRecognitionClientBrowserInterface
: public KeyedService,
public media::mojom::SpeechRecognitionClientBrowserInterface,
public speech::SodaInstaller::Observer { … };
}
#endif