| 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 2f54cb5b277f589a06c302c9ae54b84a7ff1f461..9da21c1aaac56d3fba0ee7538c30169f02045498 100644 | 
| --- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc | 
| +++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.cc | 
| @@ -948,7 +948,7 @@ std::vector<int> BweTest::GetFileSizesBytes(int num_files) { | 
| const int kMinKbytes = 100; | 
| const int kMaxKbytes = 1000; | 
|  | 
| -  test::Random random(0x12345678); | 
| +  Random random(0x12345678); | 
| std::vector<int> tcp_file_sizes_bytes; | 
|  | 
| while (num_files-- > 0) { | 
| @@ -961,7 +961,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; | 
| -  test::Random random(0x12345678); | 
| +  Random random(0x12345678); | 
|  | 
| std::vector<int64_t> tcp_starting_times_ms; | 
|  | 
|  |