chromium/third_party/openscreen/src/cast/common/public/cast_streaming_app_ids.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cast/common/public/cast_streaming_app_ids.h"

#include <array>

#include "util/std_util.h"
#include "util/string_util.h"

namespace openscreen::cast {
namespace {

// clang-format off
constexpr std::array<const char*, 90>
    kRemoteDisplayAppStreamingAudioVideoAppIds {};
// clang-format on

}  // namespace

bool IsCastStreamingAppId(const std::string& app_id) {}

bool IsCastStreamingAudioVideoAppId(const std::string& app_id) {}

bool IsCastStreamingAudioOnlyAppId(const std::string& app_id) {}

bool IsCastStreamingReceiverAppId(const std::string& app_id) {}

std::vector<std::string> GetCastStreamingAppIds() {}

}  // namespace openscreen::cast