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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h

Issue 1237393002: Evaluation tests (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Comments addressed [3] Created 5 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h
diff --git a/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h b/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h
index 3a5bb056e143084281d3d1abe38a3a9129d2de9f..98db3815bc933181f248d35f411e3e1fb7f101cd 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h
+++ b/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.h
@@ -84,28 +84,28 @@ class MetricRecorder {
void PlotThroughputHistogram(const std::string& title,
const std::string& bwe_name,
- int num_flows,
+ size_t num_flows,
int64_t extra_offset_ms,
const std::string optimum_id);
void PlotThroughputHistogram(const std::string& title,
const std::string& bwe_name,
- int num_flows,
+ size_t num_flows,
int64_t extra_offset_ms);
void PlotDelayHistogram(const std::string& title,
const std::string& bwe_name,
- int num_flows,
+ size_t num_flows,
int64_t one_way_path_delay_ms);
void PlotLossHistogram(const std::string& title,
const std::string& bwe_name,
- int num_flows,
+ size_t num_flows,
float global_loss_ratio);
void PlotObjectiveHistogram(const std::string& title,
const std::string& bwe_name,
- int num_flows);
+ size_t num_flows);
void set_start_computing_metrics_ms(int64_t start_computing_metrics_ms) {
start_computing_metrics_ms_ = start_computing_metrics_ms;

Powered by Google App Engine
This is Rietveld 408576698