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

// 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.

#include "components/enterprise/connectors/core/service_provider_config.h"

#include <array>
#include <iterator>
#include <string_view>

#include "base/json/json_reader.h"

namespace enterprise_connectors {

namespace {

constexpr std::array<SupportedTag, 2> kGoogleDlpSupportedTags =;

constexpr std::array<const char*, 3> kGoogleDlpRegionalizedUrls =;

constexpr AnalysisConfig kGoogleAnalysisConfig =;

constexpr std::array<SupportedTag, 1> kLocalTestSupportedTags =;

constexpr std::array<SupportedTag, 1> kBrcmChrmCasSupportedTags =;

constexpr std::array<SupportedTag, 1> kTrellixSupportedTags =;

constexpr AnalysisConfig kLocalTestUserAnalysisConfig =;

constexpr AnalysisConfig kBrcmChrmCasAnalysisConfig =;

constexpr std::array<const char*, 1> kTrellixSubjectNames =;

constexpr AnalysisConfig kTrellixAnalysisConfig =;

constexpr ReportingConfig kGoogleReportingConfig =;

}  // namespace

const ServiceProviderConfig* GetServiceProviderConfig() {}

}  // namespace enterprise_connectors