| Index: webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc
|
| index 72283b98c7634db19a8ce6375937c19a012227ac..9d71323d0123fad798855df1198067b8fd0aacf7 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc
|
| +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc
|
| @@ -947,7 +947,7 @@ std::vector<int> BweTest::GetFileSizesBytes(int num_files) {
|
| const int kMinKbytes = 100;
|
| const int kMaxKbytes = 1000;
|
|
|
| - Random random(0x12345678);
|
| + test::Random random(0x12345678);
|
| std::vector<int> tcp_file_sizes_bytes;
|
|
|
| while (num_files-- > 0) {
|
| @@ -960,7 +960,7 @@ std::vector<int> BweTest::GetFileSizesBytes(int num_files) {
|
| std::vector<int64_t> BweTest::GetStartingTimesMs(int num_files) {
|
| // OFF state behaves as an exp. distribution with mean = 10 seconds.
|
| const float kMeanMs = 10000.0f;
|
| - Random random(0x12345678);
|
| + test::Random random(0x12345678);
|
|
|
| std::vector<int64_t> tcp_starting_times_ms;
|
|
|
|
|