chromium/remoting/protocol/sdp_message.cc

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

#include "remoting/protocol/sdp_message.h"

#include <algorithm>
#include <string_view>
#include <utility>

#include "base/notreached.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"

namespace remoting::protocol {

SdpMessage::SdpMessage(const std::string& sdp) {}

SdpMessage::~SdpMessage() = default;

std::string SdpMessage::ToString() const {}

std::string SdpMessage::NormalizedForSignature() const {}

bool SdpMessage::AddCodecParameter(const std::string& codec,
                                   const std::string& parameters_to_add) {}

bool SdpMessage::PreferVideoCodec(const std::string& codec) {}

std::vector<std::pair<int, std::string>> SdpMessage::FindCodec(
    const std::string& codec) const {}

}  // namespace remoting::protocol