chromium/third_party/webrtc/modules/congestion_controller/goog_cc/congestion_window_pushback_controller.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/goog_cc/congestion_window_pushback_controller.h"

#include <algorithm>
#include <cstdint>

#include "api/field_trials_view.h"
#include "api/units/data_size.h"
#include "rtc_base/experiments/rate_control_settings.h"

namespace webrtc {

CongestionWindowPushbackController::CongestionWindowPushbackController(
    const FieldTrialsView& key_value_config)
    :{}

void CongestionWindowPushbackController::UpdateOutstandingData(
    int64_t outstanding_bytes) {}
void CongestionWindowPushbackController::UpdatePacingQueue(
    int64_t pacing_bytes) {}

void CongestionWindowPushbackController::SetDataWindow(DataSize data_window) {}

uint32_t CongestionWindowPushbackController::UpdateTargetBitrate(
    uint32_t bitrate_bps) {}

}  // namespace webrtc