chromium/third_party/webrtc/test/scoped_key_value_config.cc

/*
 *  Copyright (c) 2020 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#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 {

// This part is copied from system_wrappers/field_trial.cc.
void InsertIntoMap(
    std::map<std::string, std::string, std::less<>>& key_value_map,
    absl::string_view s) {}

}  // namespace

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 {}

}  // namespace test
}  // namespace webrtc