| Index: webrtc/video/receive_statistics_proxy.h
|
| diff --git a/webrtc/video/receive_statistics_proxy.h b/webrtc/video/receive_statistics_proxy.h
|
| index 4f2550ad7e2496b0c87d9037946fd4748c3fe635..7bfa6d61f0958bff3816a6ef1fc090adf1eaa4ce 100644
|
| --- a/webrtc/video/receive_statistics_proxy.h
|
| +++ b/webrtc/video/receive_statistics_proxy.h
|
| @@ -51,7 +51,8 @@ class ReceiveStatisticsProxy : public VCMReceiveStatisticsCallback,
|
| int target_delay_ms,
|
| int jitter_buffer_ms,
|
| int min_playout_delay_ms,
|
| - int render_delay_ms);
|
| + int render_delay_ms,
|
| + int64_t rtt_ms);
|
|
|
| // Overrides VCMReceiveStatisticsCallback.
|
| void OnReceiveRatesUpdated(uint32_t bitRate, uint32_t frameRate) override;
|
| @@ -94,6 +95,7 @@ class ReceiveStatisticsProxy : public VCMReceiveStatisticsCallback,
|
| SampleCounter render_width_counter_ GUARDED_BY(crit_);
|
| SampleCounter render_height_counter_ GUARDED_BY(crit_);
|
| SampleCounter decode_time_counter_ GUARDED_BY(crit_);
|
| + SampleCounter delay_counter_ GUARDED_BY(crit_);
|
| ReportBlockStats report_block_stats_ GUARDED_BY(crit_);
|
| };
|
|
|
|
|