chromium/components/enterprise/connectors/core/service_provider_config.h

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

#ifndef COMPONENTS_ENTERPRISE_CONNECTORS_CORE_SERVICE_PROVIDER_CONFIG_H_
#define COMPONENTS_ENTERPRISE_CONNECTORS_CORE_SERVICE_PROVIDER_CONFIG_H_

#include <string_view>

#include "base/containers/fixed_flat_map.h"
#include "base/containers/span.h"
#include "base/files/file_path.h"
#include "base/memory/raw_ptr_exclusion.h"
#include "base/values.h"

namespace enterprise_connectors {

struct SupportedTag {};

struct AnalysisConfig {};

struct ReportingConfig {};

struct ServiceProvider {};

ServiceProviderConfig;

// Returns the global service provider configuration, containing every service
// provider and each of their supported Connector configs.
const ServiceProviderConfig* GetServiceProviderConfig();

}  // namespace enterprise_connectors

#endif  // COMPONENTS_ENTERPRISE_CONNECTORS_CORE_SERVICE_PROVIDER_CONFIG_H_