Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(320)

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc

Issue 2964773002: Revert "Update includes for webrtc/{base => rtc_base} rename (1/3)" (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_WIN 11 #ifndef WEBRTC_WIN
12 #include <sys/types.h> 12 #include <sys/types.h>
13 #include <unistd.h> 13 #include <unistd.h>
14 #endif 14 #endif
15 15
16 #include <algorithm> 16 #include <algorithm>
17 #include <sstream> 17 #include <sstream>
18 18
19 #include "webrtc/base/constructormagic.h"
20 #include "webrtc/base/random.h"
19 #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimat or.h" 21 #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimat or.h"
20 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test.h" 22 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test.h"
21 #include "webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h" 23 #include "webrtc/modules/remote_bitrate_estimator/test/packet_receiver.h"
22 #include "webrtc/modules/remote_bitrate_estimator/test/packet_sender.h" 24 #include "webrtc/modules/remote_bitrate_estimator/test/packet_sender.h"
23 #include "webrtc/rtc_base/constructormagic.h"
24 #include "webrtc/rtc_base/random.h"
25 #include "webrtc/test/testsupport/fileutils.h" 25 #include "webrtc/test/testsupport/fileutils.h"
26 26
27 namespace webrtc { 27 namespace webrtc {
28 namespace testing { 28 namespace testing {
29 namespace bwe { 29 namespace bwe {
30 30
31 // This test fixture is used to instantiate tests running with adaptive video 31 // This test fixture is used to instantiate tests running with adaptive video
32 // senders. 32 // senders.
33 class BweFeedbackTest 33 class BweFeedbackTest
34 : public BweTest, 34 : public BweTest,
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 for (int i = 0; i < 2; ++i) { 218 for (int i = 0; i < 2; ++i) {
219 offset_ms[i] = std::max(0, 5000 * i + random_.Rand(-1000, 1000)); 219 offset_ms[i] = std::max(0, 5000 * i + random_.Rand(-1000, 1000));
220 } 220 }
221 221
222 RunFairnessTest(GetParam(), 1, 1, 300, 2000, 1000, kRttMs, kMaxJitterMs, 222 RunFairnessTest(GetParam(), 1, 1, 300, 2000, 1000, kRttMs, kMaxJitterMs,
223 offset_ms); 223 offset_ms);
224 } 224 }
225 } // namespace bwe 225 } // namespace bwe
226 } // namespace testing 226 } // namespace testing
227 } // namespace webrtc 227 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698