blob: 8aa84aa0421d56019b127c0851dbc89d9874e833 [file] [log] [blame]
/*
* Copyright 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.
*/
#ifndef RTC_BASE_RATELIMITER_H_
#define RTC_BASE_RATELIMITER_H_
#include "rtc_base/data_rate_limiter.h"
namespace rtc {
// Deprecated, use DataRateLimiter instead
class RateLimiter : public DataRateLimiter {
public:
using DataRateLimiter::DataRateLimiter;
};
} // namespace rtc
#endif // RTC_BASE_RATELIMITER_H_