#include "test/scoped_key_value_config.h"
#include "rtc_base/checks.h"
#include "system_wrappers/include/field_trial.h"
#include "test/field_trial.h"
namespace {
void InsertIntoMap(
std::map<std::string, std::string, std::less<>>& key_value_map,
absl::string_view s) { … }
}
namespace webrtc {
namespace test {
ScopedKeyValueConfig::ScopedKeyValueConfig()
: … { … }
ScopedKeyValueConfig::ScopedKeyValueConfig(absl::string_view s)
: … { … }
ScopedKeyValueConfig::ScopedKeyValueConfig(ScopedKeyValueConfig& parent,
absl::string_view s)
: … { … }
ScopedKeyValueConfig::ScopedKeyValueConfig(ScopedKeyValueConfig* parent,
absl::string_view s)
: … { … }
ScopedKeyValueConfig::~ScopedKeyValueConfig() { … }
ScopedKeyValueConfig* ScopedKeyValueConfig::GetRoot(ScopedKeyValueConfig* n) { … }
std::string ScopedKeyValueConfig::GetValue(absl::string_view key) const { … }
std::string ScopedKeyValueConfig::LookupRecurse(absl::string_view key) const { … }
}
}