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

Unified Diff: remoting/webapp/crd/js/stats_accumulator.js

Issue 983023002: [Chromoting] Use compact notation for javascript @private types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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: remoting/webapp/crd/js/stats_accumulator.js
diff --git a/remoting/webapp/crd/js/stats_accumulator.js b/remoting/webapp/crd/js/stats_accumulator.js
index 4cfe8e3fa59cc042cceabc65225a02c32e3aea92..0fe99fb38eb058a8c28590d3659a52a34766705d 100644
--- a/remoting/webapp/crd/js/stats_accumulator.js
+++ b/remoting/webapp/crd/js/stats_accumulator.js
@@ -22,16 +22,14 @@ var remoting = remoting || {};
remoting.StatsAccumulator = function() {
/**
* A map from names to lists of values.
- * @private
- * @type Object<string, Array<number>>
+ * @private {Object<string, Array<number>>}
*/
this.valueLists_ = {};
/**
* The first time, after this object was most recently initialized or emptied,
* at which a value was added to this object.
- * @private
- * @type {?number}
+ * @private {?number}
*/
this.timeOfFirstValue_ = null;
};
« no previous file with comments | « remoting/webapp/crd/js/session_connector_impl.js ('k') | remoting/webapp/crd/js/third_party_token_fetcher.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698