diff --git a/rtc_base/BUILD.gn b/rtc_base/BUILD.gn index 348be5ce8d..61b92f67e3 100644 --- a/rtc_base/BUILD.gn +++ b/rtc_base/BUILD.gn @@ -852,7 +852,6 @@ rtc_static_library("rtc_base_generic") { "physicalsocketserver.h", "proxyinfo.cc", "proxyinfo.h", - "ratelimiter.h", "rtccertificate.cc", "rtccertificate.h", "rtccertificategenerator.cc", diff --git a/rtc_base/ratelimiter.h b/rtc_base/ratelimiter.h deleted file mode 100644 index 8aa84aa042..0000000000 --- a/rtc_base/ratelimiter.h +++ /dev/null @@ -1,24 +0,0 @@ -/* - * 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_