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

Unified Diff: webrtc/modules/congestion_controller/median_slope_estimator.h

Issue 2913793002: Address some violations of chromium-style. (Closed)
Patch Set: Add empty line. Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/congestion_controller/median_slope_estimator.h
diff --git a/webrtc/modules/congestion_controller/median_slope_estimator.h b/webrtc/modules/congestion_controller/median_slope_estimator.h
index 3a13ec71ab4bbd2fd0767c5926bbf1afebb8e785..f360aa790bb2fefbdeebc86026df0ea5e4391ec9 100644
--- a/webrtc/modules/congestion_controller/median_slope_estimator.h
+++ b/webrtc/modules/congestion_controller/median_slope_estimator.h
@@ -48,10 +48,8 @@ class MedianSlopeEstimator {
private:
struct DelayInfo {
- DelayInfo(int64_t time, double delay, size_t slope_count)
- : time(time), delay(delay) {
- slopes.reserve(slope_count);
- }
+ DelayInfo(int64_t time, double delay, size_t slope_count);
+ ~DelayInfo();
int64_t time;
double delay;
std::vector<double> slopes;

Powered by Google App Engine
This is Rietveld 408576698