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

Unified Diff: chrome/browser/media/webrtc_browsertest_perf.cc

Issue 216683002: Correcting value incorrectly logged as video_send. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/webrtc_browsertest_perf.cc
diff --git a/chrome/browser/media/webrtc_browsertest_perf.cc b/chrome/browser/media/webrtc_browsertest_perf.cc
index b5ba256c95c0ade25af5d40791681accf4afa285..fcf731a1dce760a41c2cadffd970152385de4c98 100644
--- a/chrome/browser/media/webrtc_browsertest_perf.cc
+++ b/chrome/browser/media/webrtc_browsertest_perf.cc
@@ -83,21 +83,21 @@ static bool MaybePrintResultsForVideoReceive(
"pixels", false);
EXPECT_TRUE(pc_dict.GetString(
Statistic("googCaptureJitterMs", ssrc), &value));
- perf_test::PrintResult("video_send", "", "goog_capture_jitter_ms", value,
+ perf_test::PrintResult("video_recv", "", "goog_capture_jitter_ms", value,
tommi (sloooow) - chröme 2014/03/28 09:36:25 can we have constants in the functions so that we
phoglund_chromium 2014/03/28 10:05:18 Yeah, that's a good idea in this case (would have
"ms", false);
EXPECT_TRUE(pc_dict.GetString(
Statistic("googCaptureQueueDelayMsPerS", ssrc), &value));
- perf_test::PrintResult("video_send", "", "goog_capture_queue_delay_ms_per_s",
+ perf_test::PrintResult("video_recv", "", "goog_capture_queue_delay_ms_per_s",
value, "ms/s", false);
EXPECT_TRUE(pc_dict.GetString(
Statistic("googEncodeUsagePercent", ssrc), &value));
- perf_test::PrintResult("video_send", "", "goog_encode_usage_percent",
+ perf_test::PrintResult("video_recv", "", "goog_encode_usage_percent",
value, "%", false);
EXPECT_TRUE(pc_dict.GetString(Statistic("googAvgEncodeMs", ssrc), &value));
- perf_test::PrintResult("video_send", "", "goog_avg_encode_ms", value, "ms",
+ perf_test::PrintResult("video_recv", "", "goog_avg_encode_ms", value, "ms",
false);
EXPECT_TRUE(pc_dict.GetString(Statistic("googRtt", ssrc), &value));
- perf_test::PrintResult("video_send", "", "goog_rtt", value, "ms", false);
+ perf_test::PrintResult("video_recv", "", "goog_rtt", value, "ms", false);
return true;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698