blob: 96e7ff5d8e911bbfa1c3fa843b7b6f82a4b68d95 [file] [log] [blame]
// Copyright 2021 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 COMPONENTS_COMPONENT_UPDATER_COMPONENT_UPDATER_UTILS_H_
#define COMPONENTS_COMPONENT_UPDATER_COMPONENT_UPDATER_UTILS_H_
#include <string>
#include <vector>
#include "base/containers/flat_map.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
namespace component_updater {
struct ComponentRegistration;
absl::optional<ComponentRegistration> GetComponent(
const base::flat_map<std::string, ComponentRegistration>& components,
const std::string& id);
std::vector<absl::optional<ComponentRegistration>> GetCrxComponents(
const base::flat_map<std::string, ComponentRegistration>&
registered_components,
const std::vector<std::string>& ids);
} // namespace component_updater
#endif // COMPONENTS_COMPONENT_UPDATER_COMPONENT_UPDATER_UTILS_H_