blob: 76d1beda04c3f1a22bf3d0cdfc7b61f0d5e329bc [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_ACCESSIBILITY_SODA_INSTALLER_IMPL_H_
#define CHROME_BROWSER_ACCESSIBILITY_SODA_INSTALLER_IMPL_H_
#include <map>
#include <string>
#include "base/scoped_observer.h"
#include "chrome/browser/accessibility/soda_installer.h"
#include "components/component_updater/component_updater_service.h"
class PrefService;
namespace update_client {
struct CrxUpdateItem;
}
namespace speech {
// Installer of SODA (Speech On-Device API) for the Live Caption feature on
// non-ChromeOS desktop versions of Chrome browser.
class SodaInstallerImpl : public SodaInstaller,
public component_updater::ServiceObserver {
public:
SodaInstallerImpl();
~SodaInstallerImpl() override;
SodaInstallerImpl(const SodaInstallerImpl&) = delete;
SodaInstallerImpl& operator=(const SodaInstallerImpl&) = delete;
// SodaInstaller:
void InstallSoda(PrefService* prefs) override;
void InstallLanguage(PrefService* prefs) override;
bool IsSodaRegistered() override;
private:
// component_updater::ServiceObserver:
void OnEvent(Events event, const std::string& id) override;
std::map<std::string, update_client::CrxUpdateItem> downloading_components_;
ScopedObserver<component_updater::ComponentUpdateService,
component_updater::ComponentUpdateService::Observer>
component_updater_observer_{this};
};
} // namespace speech
#endif // CHROME_BROWSER_ACCESSIBILITY_SODA_INSTALLER_IMPL_H_