chromium/third_party/openscreen/src/cast/streaming/public/receiver_message.h

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

#ifndef CAST_STREAMING_PUBLIC_RECEIVER_MESSAGE_H_
#define CAST_STREAMING_PUBLIC_RECEIVER_MESSAGE_H_

#include <memory>
#include <optional>
#include <string>
#include <string_view>
#include <vector>

#include "absl/types/variant.h"
#include "cast/streaming/public/answer_messages.h"
#include "json/value.h"
#include "util/osp_logging.h"

namespace openscreen::cast {

enum class MediaCapability {};

struct ReceiverCapability {};

// To avoid collisions with legacy error values, all Open Screen receiver errors
// are offset.
struct ReceiverError {};

struct ReceiverMessage {};

}  // namespace openscreen::cast

#endif  // CAST_STREAMING_PUBLIC_RECEIVER_MESSAGE_H_