| Index: webrtc/video/call_stats.h
 | 
| diff --git a/webrtc/video/call_stats.h b/webrtc/video/call_stats.h
 | 
| index 8a09b7eed73d5c41318098316d7f43f1091e4c6b..c013caece569f4ae7871077953234759fd4322af 100644
 | 
| --- a/webrtc/video/call_stats.h
 | 
| +++ b/webrtc/video/call_stats.h
 | 
| @@ -58,6 +58,8 @@ class CallStats : public Module {
 | 
|    int64_t avg_rtt_ms() const;
 | 
|  
 | 
|   private:
 | 
| +  void UpdateHistograms();
 | 
| +
 | 
|    Clock* const clock_;
 | 
|    // Protecting all members.
 | 
|    rtc::CriticalSection crit_;
 | 
| @@ -68,6 +70,7 @@ class CallStats : public Module {
 | 
|    // The last RTT in the statistics update (zero if there is no valid estimate).
 | 
|    int64_t max_rtt_ms_;
 | 
|    int64_t avg_rtt_ms_;
 | 
| +  int64_t time_of_first_rtt_ms_ GUARDED_BY(crit_);
 | 
|  
 | 
|    // All Rtt reports within valid time interval, oldest first.
 | 
|    std::list<RttTime> reports_;
 | 
| 
 |