chromium/chrome/browser/component_updater/commerce_heuristics_component_installer.h

// Copyright 2022 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_COMMERCE_HEURISTICS_COMPONENT_INSTALLER_H_
#define CHROME_BROWSER_COMPONENT_UPDATER_COMMERCE_HEURISTICS_COMPONENT_INSTALLER_H_

#include <stdint.h>

#include <memory>
#include <string>
#include <vector>

#include "base/files/file_path.h"
#include "base/values.h"
#include "components/component_updater/component_installer.h"

namespace component_updater {

class ComponentUpdateService;

class CommerceHeuristicsInstallerPolicy : public ComponentInstallerPolicy {};

void RegisterCommerceHeuristicsComponent(ComponentUpdateService* cus);

}  // namespace component_updater

#endif  // CHROME_BROWSER_COMPONENT_UPDATER_COMMERCE_HEURISTICS_COMPONENT_INSTALLER_H_