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

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.h

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_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_ 11 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_
12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_ 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_
13 13
14 #include <assert.h> 14 #include <assert.h>
15 #include <math.h> 15 #include <math.h>
16 16
17 #include <algorithm> 17 #include <algorithm>
18 #include <list> 18 #include <list>
19 #include <memory> 19 #include <memory>
20 #include <numeric> 20 #include <numeric>
21 #include <set> 21 #include <set>
22 #include <sstream> 22 #include <sstream>
23 #include <string> 23 #include <string>
24 #include <utility> 24 #include <utility>
25 #include <vector> 25 #include <vector>
26 26
27 #include "webrtc/base/constructormagic.h"
28 #include "webrtc/base/random.h"
27 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" 29 #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h"
28 #include "webrtc/modules/include/module_common_types.h" 30 #include "webrtc/modules/include/module_common_types.h"
29 #include "webrtc/modules/pacing/paced_sender.h" 31 #include "webrtc/modules/pacing/paced_sender.h"
30 #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimat or.h" 32 #include "webrtc/modules/remote_bitrate_estimator/include/remote_bitrate_estimat or.h"
31 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" 33 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h"
32 #include "webrtc/modules/remote_bitrate_estimator/test/packet.h" 34 #include "webrtc/modules/remote_bitrate_estimator/test/packet.h"
33 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" 35 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
34 #include "webrtc/rtc_base/constructormagic.h"
35 #include "webrtc/rtc_base/random.h"
36 #include "webrtc/system_wrappers/include/clock.h" 36 #include "webrtc/system_wrappers/include/clock.h"
37 #include "webrtc/typedefs.h" 37 #include "webrtc/typedefs.h"
38 38
39 namespace webrtc { 39 namespace webrtc {
40 40
41 class RtcpBandwidthObserver; 41 class RtcpBandwidthObserver;
42 42
43 namespace testing { 43 namespace testing {
44 namespace bwe { 44 namespace bwe {
45 45
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 uint32_t frame_counter_; 464 uint32_t frame_counter_;
465 int compensation_bytes_; 465 int compensation_bytes_;
466 int compensation_per_frame_; 466 int compensation_per_frame_;
467 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(PeriodicKeyFrameSource); 467 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(PeriodicKeyFrameSource);
468 }; 468 };
469 } // namespace bwe 469 } // namespace bwe
470 } // namespace testing 470 } // namespace testing
471 } // namespace webrtc 471 } // namespace webrtc
472 472
473 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_ 473 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_BWE_TEST_FRAMEWORK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698