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

Unified Diff: remoting/webapp/base/js/client_plugin_impl.js

Issue 2913073002: Stops accumulating performance statistics on the Chrome App. (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | remoting/webapp/base/js/client_session.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/base/js/client_plugin_impl.js
diff --git a/remoting/webapp/base/js/client_plugin_impl.js b/remoting/webapp/base/js/client_plugin_impl.js
index ae72b7e6488893cedbe5679dbf1d2195f7238c5b..8ba60653e8d83a6b6d90d3c4e612893cc2f95d2b 100644
--- a/remoting/webapp/base/js/client_plugin_impl.js
+++ b/remoting/webapp/base/js/client_plugin_impl.js
@@ -278,10 +278,16 @@ remoting.ClientPluginImpl.prototype.handleMessageMethod_ = function(message) {
base.getNumberAttr(message.data, 'videoBandwidth');
base.getNumberAttr(message.data, 'videoFrameRate');
base.getNumberAttr(message.data, 'captureLatency');
+ base.getNumberAttr(message.data, 'maxCaptureLatency');
base.getNumberAttr(message.data, 'encodeLatency');
+ base.getNumberAttr(message.data, 'maxEncodeLatency');
base.getNumberAttr(message.data, 'decodeLatency');
+ base.getNumberAttr(message.data, 'maxDecodeLatency');
base.getNumberAttr(message.data, 'renderLatency');
+ base.getNumberAttr(message.data, 'maxRenderLatency');
base.getNumberAttr(message.data, 'roundtripLatency');
+ base.getNumberAttr(message.data, 'maxRoundtripLatency');
+
this.perfStats_ =
/** @type {remoting.ClientSession.PerfStats} */ (message.data);
« no previous file with comments | « no previous file | remoting/webapp/base/js/client_session.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698