blob: a93eb001a66e4347e689f8c142ab90adce1a4511 [file] [log] [blame]
// Copyright 2022 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_CONFIG_PARSER_H_
#define COMPONENTS_SEGMENTATION_PLATFORM_INTERNAL_CONFIG_PARSER_H_
#include <memory>
#include <string>
#include "base/containers/flat_set.h"
#include "components/segmentation_platform/public/proto/segmentation_platform.pb.h"
namespace segmentation_platform {
struct Config;
// Parses and returns the segmentation config from JSON string.
std::unique_ptr<Config> ParseConfigFromString(const std::string& config_str);
base::flat_set<proto::SegmentId> GetAllSegmentIdsFromConfigs(
const std::vector<std::unique_ptr<Config>>& configs);
} // namespace segmentation_platform
#endif // COMPONENTS_SEGMENTATION_PLATFORM_INTERNAL_CONFIG_PARSER_H_