| Index: webrtc/video/receive_statistics_proxy.h
 | 
| diff --git a/webrtc/video/receive_statistics_proxy.h b/webrtc/video/receive_statistics_proxy.h
 | 
| index 07e59b4d74ad6253bf90f29ea086c1c305466837..c8e1c000531904c65dbe336dc88692f48e78bcc0 100644
 | 
| --- a/webrtc/video/receive_statistics_proxy.h
 | 
| +++ b/webrtc/video/receive_statistics_proxy.h
 | 
| @@ -140,7 +140,10 @@ class ReceiveStatisticsProxy : public VCMReceiveStatisticsCallback,
 | 
|    SampleCounter target_delay_counter_ GUARDED_BY(crit_);
 | 
|    SampleCounter current_delay_counter_ GUARDED_BY(crit_);
 | 
|    SampleCounter delay_counter_ GUARDED_BY(crit_);
 | 
| -  SampleCounter e2e_delay_counter_ GUARDED_BY(crit_);
 | 
| +  SampleCounter e2e_delay_counter_video_ GUARDED_BY(crit_);
 | 
| +  SampleCounter e2e_delay_counter_screenshare_ GUARDED_BY(crit_);
 | 
| +  int64_t e2e_delay_max_ms_video_ GUARDED_BY(crit_);
 | 
| +  int64_t e2e_delay_max_ms_screenshare_ GUARDED_BY(crit_);
 | 
|    MaxCounter freq_offset_counter_ GUARDED_BY(crit_);
 | 
|    int64_t first_report_block_time_ms_ GUARDED_BY(crit_);
 | 
|    ReportBlockStats report_block_stats_ GUARDED_BY(crit_);
 | 
| 
 |