chromium/third_party/webrtc/modules/congestion_controller/rtp/control_handler.cc

/*
 *  Copyright (c) 2018 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 "modules/congestion_controller/rtp/control_handler.h"

#include <algorithm>
#include <vector>

#include "api/units/data_rate.h"
#include "modules/pacing/pacing_controller.h"
#include "rtc_base/logging.h"
#include "rtc_base/numerics/safe_conversions.h"
#include "rtc_base/numerics/safe_minmax.h"

namespace webrtc {

void CongestionControlHandler::SetTargetRate(
    TargetTransferRate new_target_rate) {}

void CongestionControlHandler::SetNetworkAvailability(bool network_available) {}

void CongestionControlHandler::SetPacerQueue(TimeDelta expected_queue_time) {}

absl::optional<TargetTransferRate> CongestionControlHandler::GetUpdate() {}

}  // namespace webrtc