Make RemoteBitrateEstimator::GetStats() virtual.

Should have been added in 59c634b605.

R=kjellander@webrtc.org

Review URL: https://codereview.webrtc.org/1713463002 .

Cr-Commit-Position: refs/heads/master@{#11667}
This commit is contained in:
Stefan Holmer
2016-02-18 11:42:30 +01:00
parent fd22e6cf2d
commit 3ee73a59ad

View File

@ -71,7 +71,7 @@ class RemoteBitrateEstimator : public CallStatsObserver, public Module {
uint32_t* bitrate_bps) const = 0; uint32_t* bitrate_bps) const = 0;
// TODO(holmer): Remove when all implementations have been updated. // TODO(holmer): Remove when all implementations have been updated.
bool GetStats(ReceiveBandwidthEstimatorStats* output) const { virtual bool GetStats(ReceiveBandwidthEstimatorStats* output) const {
return false; return false;
} }