| Index: remoting/client/chromoting_stats.h
|
| diff --git a/remoting/client/chromoting_stats.h b/remoting/client/chromoting_stats.h
|
| index 9e91457216f45f0539029949051f69d0bcb7d0e3..da7601b7f9222d3026fe768713db067a8a4c0b78 100644
|
| --- a/remoting/client/chromoting_stats.h
|
| +++ b/remoting/client/chromoting_stats.h
|
| @@ -19,6 +19,7 @@ class ChromotingStats {
|
| virtual ~ChromotingStats();
|
|
|
| RateCounter* video_bandwidth() { return &video_bandwidth_; }
|
| + RateCounter* video_frame_rate() { return &video_frame_rate_; }
|
| RunningAverage* video_capture_ms() { return &video_capture_ms_; }
|
| RunningAverage* video_encode_ms() { return &video_encode_ms_; }
|
| RunningAverage* video_decode_ms() { return &video_decode_ms_; }
|
| @@ -27,6 +28,7 @@ class ChromotingStats {
|
|
|
| private:
|
| RateCounter video_bandwidth_;
|
| + RateCounter video_frame_rate_;
|
| RunningAverage video_capture_ms_;
|
| RunningAverage video_encode_ms_;
|
| RunningAverage video_decode_ms_;
|
|
|