chromium/third_party/webrtc/pc/rtcp_mux_filter.cc

/*
 *  Copyright 2004 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 "pc/rtcp_mux_filter.h"

#include "rtc_base/logging.h"

namespace cricket {

RtcpMuxFilter::RtcpMuxFilter() :{}

bool RtcpMuxFilter::IsFullyActive() const {}

bool RtcpMuxFilter::IsProvisionallyActive() const {}

bool RtcpMuxFilter::IsActive() const {}

void RtcpMuxFilter::SetActive() {}

bool RtcpMuxFilter::SetOffer(bool offer_enable, ContentSource src) {}

bool RtcpMuxFilter::SetProvisionalAnswer(bool answer_enable,
                                         ContentSource src) {}

bool RtcpMuxFilter::SetAnswer(bool answer_enable, ContentSource src) {}

bool RtcpMuxFilter::ExpectOffer(bool offer_enable, ContentSource source) {}

bool RtcpMuxFilter::ExpectAnswer(ContentSource source) {}

}  // namespace cricket