summaryrefslogtreecommitdiffstats
path: root/chromium/components/aggregation_service/features.cc
blob: 17d4975913db7f958f1ad9c9dbdf9f5093d1ff2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2023 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/aggregation_service/features.h"

#include <string>

#include "base/feature_list.h"
#include "base/metrics/field_trial_params.h"
#include "components/aggregation_service/aggregation_coordinator_utils.h"

namespace aggregation_service {

BASE_FEATURE(kAggregationServiceMultipleCloudProviders,
             "AggregationServiceMultipleCloudProviders",
             base::FEATURE_ENABLED_BY_DEFAULT);

const base::FeatureParam<std::string> kAggregationServiceCoordinatorAwsCloud{
    &kAggregationServiceMultipleCloudProviders, "aws_cloud",
    kDefaultAggregationCoordinatorAwsCloud};

const base::FeatureParam<std::string> kAggregationServiceCoordinatorGcpCloud{
    &kAggregationServiceMultipleCloudProviders, "gcp_cloud",
    kDefaultAggregationCoordinatorGcpCloud};

}  // namespace aggregation_service