#include <grpc/support/port_platform.h>
#include "src/core/lib/service_config/service_config_parser.h"
#include <stdlib.h>
#include <string>
#include "absl/strings/str_cat.h"
#include <grpc/support/log.h>
namespace grpc_core {
ServiceConfigParser ServiceConfigParser::Builder::Build() { … }
void ServiceConfigParser::Builder::RegisterParser(
std::unique_ptr<Parser> parser) { … }
ServiceConfigParser::ParsedConfigVector
ServiceConfigParser::ParseGlobalParameters(const ChannelArgs& args,
const Json& json,
ValidationErrors* errors) const { … }
ServiceConfigParser::ParsedConfigVector
ServiceConfigParser::ParsePerMethodParameters(const ChannelArgs& args,
const Json& json,
ValidationErrors* errors) const { … }
size_t ServiceConfigParser::GetParserIndex(absl::string_view name) const { … }
}