Delete deprecated method StreamStatistician::GetStatistics

Bug: webrtc:10679
Change-Id: I9374b390783ef557c6981d8b3cea0be71f58cd27
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/150323
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#29080}
This commit is contained in:
Niels Möller
2019-09-05 14:58:47 +02:00
committed by Commit Bot
parent cfb9497299
commit f294d2629f
3 changed files with 0 additions and 32 deletions

View File

@ -33,8 +33,6 @@ class StreamStatisticianImpl : public StreamStatistician {
RtpReceiveStats GetStats() const override;
// |reset| here and in next method restarts calculation of fraction_lost stat.
bool GetStatistics(RtcpStatistics* statistics, bool reset) override;
bool GetActiveStatisticsAndReset(RtcpStatistics* statistics);
absl::optional<int> GetFractionLostInPercent() const override;
StreamDataCounters GetReceiveStreamDataCounters() const override;
@ -99,7 +97,6 @@ class StreamStatisticianImpl : public StreamStatistician {
// Counter values when we sent the last report.
int32_t last_report_cumulative_loss_ RTC_GUARDED_BY(&stream_lock_);
int64_t last_report_seq_max_ RTC_GUARDED_BY(&stream_lock_);
RtcpStatistics last_reported_statistics_ RTC_GUARDED_BY(&stream_lock_);
};
class ReceiveStatisticsImpl : public ReceiveStatistics {