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 2f78150205d19efd08c5374c4d63bbb7056346bc..0cb35623b608326776cf34ead4c6e6e7469ee126 100644 |
--- a/remoting/client/server_log_entry_client.cc |
+++ b/remoting/client/server_log_entry_client.cc |
@@ -115,7 +115,8 @@ scoped_ptr<ServerLogEntry> MakeLogEntryForStatistics( |
entry->AddEventNameField(kValueEventNameStatistics); |
entry->Set("video-bandwidth", |
- StringPrintf("%.2f", statistics->video_bandwidth()->Rate())); |
+ StringPrintf("%.2f", |
+ statistics->video_bandwidth_display()->Rate())); |
entry->Set("capture-latency", |
StringPrintf("%.2f", statistics->video_capture_ms()->Average())); |
entry->Set("encode-latency", |
@@ -123,7 +124,8 @@ scoped_ptr<ServerLogEntry> MakeLogEntryForStatistics( |
entry->Set("decode-latency", |
StringPrintf("%.2f", statistics->video_decode_ms()->Average())); |
entry->Set("render-latency", |
- StringPrintf("%.2f", statistics->video_frame_rate()->Rate())); |
+ StringPrintf("%.2f", |
+ statistics->video_frame_rate_display()->Rate())); |
entry->Set("roundtrip-latency", |
StringPrintf("%.2f", statistics->round_trip_ms()->Average())); |