Chromium Code Reviews| Index: webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h |
| diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h |
| index f7c1d1f0bf4db639f02617d53c69c3f62ba64c9f..4f07267451e6a7d26a59d1120f1f420cb78681c8 100644 |
| --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h |
| +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h |
| @@ -17,9 +17,11 @@ |
| #include <algorithm> |
| #include <list> |
| #include <numeric> |
| +#include <set> |
| #include <sstream> |
| #include <string> |
| #include <vector> |
| +#include <utility> |
|
mflodman
2015/12/14 12:05:36
Alphabetic order.
terelius
2015/12/14 15:28:55
Done.
|
| #include "webrtc/base/common.h" |
| #include "webrtc/base/random.h" |
| @@ -44,7 +46,7 @@ class DelayCapHelper; |
| class RateCounter { |
| public: |
| - RateCounter(int64_t window_size_ms) |
| + explicit RateCounter(int64_t window_size_ms) |
| : window_size_us_(1000 * window_size_ms), |
| recently_received_packets_(0), |
| recently_received_bytes_(0), |
| @@ -415,6 +417,7 @@ class VideoSource { |
| uint32_t frame_size_bytes_; |
| private: |
| + Random random_; |
| const int flow_id_; |
| int64_t next_frame_ms_; |
| int64_t next_frame_rand_ms_; |