#ifndef WEBLAYER_BROWSER_TTS_ENVIRONMENT_ANDROID_IMPL_H_
#define WEBLAYER_BROWSER_TTS_ENVIRONMENT_ANDROID_IMPL_H_
#include "content/public/browser/tts_environment_android.h"
namespace weblayer {
class TtsEnvironmentAndroidImpl : public content::TtsEnvironmentAndroid {
public:
TtsEnvironmentAndroidImpl();
TtsEnvironmentAndroidImpl(const TtsEnvironmentAndroidImpl&) = delete;
TtsEnvironmentAndroidImpl& operator=(const TtsEnvironmentAndroidImpl&) =
delete;
~TtsEnvironmentAndroidImpl() override;
bool CanSpeakUtterancesFromHiddenWebContents() override;
bool CanSpeakNow() override;
void SetCanSpeakNowChangedCallback(base::RepeatingClosure callback) override;
};
}
#endif