chromium/chrome/browser/component_updater/translate_kit_component_installer.h

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

#ifndef CHROME_BROWSER_COMPONENT_UPDATER_TRANSLATE_KIT_COMPONENT_INSTALLER_H_
#define CHROME_BROWSER_COMPONENT_UPDATER_TRANSLATE_KIT_COMPONENT_INSTALLER_H_

#include <string>

#include "base/gtest_prod_util.h"
#include "base/values.h"
#include "components/component_updater/component_installer.h"
#include "components/update_client/update_client.h"

namespace component_updater {

// The installer policy for the TranslateKit Component.
class TranslateKitComponentInstallerPolicy : public ComponentInstallerPolicy {};

// Call once during startup to make the component update service aware of
// the TranslateKit component.
void RegisterTranslateKitComponent(ComponentUpdateService* cus);

}  // namespace component_updater

#endif  // CHROME_BROWSER_COMPONENT_UPDATER_TRANSLATE_KIT_COMPONENT_INSTALLER_H_