Delete obsolete alias RateLimiter and rtc_base/ratelimiter.h

Usage in Chrome was eliminated in cl
https://chromium-review.googlesource.com/c/chromium/src/+/966602.

Bug: webrtc:6424
Change-Id: I84bdf830724f4437ed54c37013f676bb40e4dbfc
Reviewed-on: https://webrtc-review.googlesource.com/62800
Reviewed-by: Sebastian Jansson <srte@webrtc.org>
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22509}
This commit is contained in:
Niels Möller 2018-03-19 11:32:07 +01:00 committed by Commit Bot
parent 9047dac757
commit faed53837d
2 changed files with 0 additions and 25 deletions

View File

@ -852,7 +852,6 @@ rtc_static_library("rtc_base_generic") {
"physicalsocketserver.h",
"proxyinfo.cc",
"proxyinfo.h",
"ratelimiter.h",
"rtccertificate.cc",
"rtccertificate.h",
"rtccertificategenerator.cc",

View File

@ -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_