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

Unified Diff: remoting/client/server_log_entry_client.cc

Issue 1817093005: Revert of Show max latency on client's status bar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « remoting/client/plugin/chromoting_instance.cc ('k') | remoting/protocol/capture_scheduler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/server_log_entry_client.cc
diff --git a/remoting/client/server_log_entry_client.cc b/remoting/client/server_log_entry_client.cc
index 290165f8642f72794c58f7404e9f7211b3a95441..068615903afb8db051d3adba5f64a3964d7a911c 100644
--- a/remoting/client/server_log_entry_client.cc
+++ b/remoting/client/server_log_entry_client.cc
@@ -117,15 +117,15 @@
entry->Set("video-bandwidth",
StringPrintf("%.2f", perf_tracker->video_bandwidth()));
entry->Set("capture-latency",
- StringPrintf("%.2f", perf_tracker->video_capture_ms().Average()));
+ StringPrintf("%.2f", perf_tracker->video_capture_ms()));
entry->Set("encode-latency",
- StringPrintf("%.2f", perf_tracker->video_encode_ms().Average()));
+ StringPrintf("%.2f", perf_tracker->video_encode_ms()));
entry->Set("decode-latency",
- StringPrintf("%.2f", perf_tracker->video_decode_ms().Average()));
+ StringPrintf("%.2f", perf_tracker->video_decode_ms()));
entry->Set("render-latency",
- StringPrintf("%.2f", perf_tracker->video_paint_ms().Average()));
+ StringPrintf("%.2f", perf_tracker->video_frame_rate()));
entry->Set("roundtrip-latency",
- StringPrintf("%.2f", perf_tracker->round_trip_ms().Average()));
+ StringPrintf("%.2f", perf_tracker->round_trip_ms()));
return entry;
}
« no previous file with comments | « remoting/client/plugin/chromoting_instance.cc ('k') | remoting/protocol/capture_scheduler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698