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

Side by Side Diff: webrtc/modules/bitrate_controller/send_side_bandwidth_estimation.h

Issue 1620003003: Enable cpplint for webrtc/modules/bitrate_controller and fix all uncovered cpplint errors. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 11 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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 * FEC and NACK added bitrate is handled outside class 10 * FEC and NACK added bitrate is handled outside class
11 */ 11 */
12 12
13 #ifndef WEBRTC_MODULES_BITRATE_CONTROLLER_SEND_SIDE_BANDWIDTH_ESTIMATION_H_ 13 #ifndef WEBRTC_MODULES_BITRATE_CONTROLLER_SEND_SIDE_BANDWIDTH_ESTIMATION_H_
14 #define WEBRTC_MODULES_BITRATE_CONTROLLER_SEND_SIDE_BANDWIDTH_ESTIMATION_H_ 14 #define WEBRTC_MODULES_BITRATE_CONTROLLER_SEND_SIDE_BANDWIDTH_ESTIMATION_H_
15 15
16 #include <deque> 16 #include <deque>
17 #include <utility>
18 #include <vector>
17 19
18 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" 20 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
19 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" 21 #include "webrtc/system_wrappers/include/critical_section_wrapper.h"
20 22
21 namespace webrtc { 23 namespace webrtc {
22 24
23 class RtcEventLog; 25 class RtcEventLog;
24 26
25 class SendSideBandwidthEstimation { 27 class SendSideBandwidthEstimation {
26 public: 28 public:
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 int64_t time_last_decrease_ms_; 89 int64_t time_last_decrease_ms_;
88 int64_t first_report_time_ms_; 90 int64_t first_report_time_ms_;
89 int initially_lost_packets_; 91 int initially_lost_packets_;
90 int bitrate_at_2_seconds_kbps_; 92 int bitrate_at_2_seconds_kbps_;
91 UmaState uma_update_state_; 93 UmaState uma_update_state_;
92 std::vector<bool> rampup_uma_stats_updated_; 94 std::vector<bool> rampup_uma_stats_updated_;
93 RtcEventLog* event_log_; 95 RtcEventLog* event_log_;
94 }; 96 };
95 } // namespace webrtc 97 } // namespace webrtc
96 #endif // WEBRTC_MODULES_BITRATE_CONTROLLER_SEND_SIDE_BANDWIDTH_ESTIMATION_H_ 98 #endif // WEBRTC_MODULES_BITRATE_CONTROLLER_SEND_SIDE_BANDWIDTH_ESTIMATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698