// 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. #ifndef COMPONENTS_SEGMENTATION_PLATFORM_INTERNAL_DATABASE_CONFIG_HOLDER_H_ #define COMPONENTS_SEGMENTATION_PLATFORM_INTERNAL_DATABASE_CONFIG_HOLDER_H_ #include <map> #include <memory> #include <set> #include <string> #include <vector> #include "base/containers/flat_set.h" #include "components/segmentation_platform/public/config.h" #include "components/segmentation_platform/public/proto/segmentation_platform.pb.h" namespace segmentation_platform { // Holds all Configs active in the service. class ConfigHolder { … }; } // namespace segmentation_platform #endif // COMPONENTS_SEGMENTATION_PLATFORM_INTERNAL_DATABASE_CONFIG_HOLDER_H_