chromium/third_party/webrtc/test/pc/e2e/analyzer/video/names_collection.cc

/*
 *  Copyright (c) 2022 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/pc/e2e/analyzer/video/names_collection.h"

#include <set>

#include "absl/strings/string_view.h"
#include "absl/types/optional.h"

namespace webrtc {

NamesCollection::NamesCollection(rtc::ArrayView<const std::string> names) {}

bool NamesCollection::HasName(absl::string_view name) const {}

size_t NamesCollection::AddIfAbsent(absl::string_view name) {}

absl::optional<size_t> NamesCollection::RemoveIfPresent(
    absl::string_view name) {}

std::set<size_t> NamesCollection::GetPresentIndexes() const {}

std::set<size_t> NamesCollection::GetAllIndexes() const {}

}  // namespace webrtc