chromium/components/compose/core/browser/config.cc

// 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/compose/core/browser/config.h"

#include "base/feature_list.h"
#include "base/metrics/field_trial_params.h"
#include "base/no_destructor.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/types/cxx23_to_underlying.h"
#include "components/compose/core/browser/compose_features.h"
#include "components/segmentation_platform/public/features.h"

namespace compose {

namespace {

Config& GetMutableConfig() {}

}  // namespace

const Config& GetComposeConfig() {}

Config& GetMutableConfigForTesting() {}

void ResetConfigForTesting() {}

Config::Config() {}

Config::Config(const Config& other) = default;
Config::~Config() = default;

}  // namespace compose