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

Unified Diff: remoting/webapp/crd/js/wcs.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
« no previous file with comments | « remoting/webapp/crd/js/toolbar.js ('k') | remoting/webapp/crd/js/wcs_adapter.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/wcs.js
diff --git a/remoting/webapp/crd/js/wcs.js b/remoting/webapp/crd/js/wcs.js
index a019c1b304e3ff9fa1f15f75764a149eedbc5724..2e72af08460029cf7e10df9c133e41202eec91d0 100644
--- a/remoting/webapp/crd/js/wcs.js
+++ b/remoting/webapp/crd/js/wcs.js
@@ -25,29 +25,25 @@ remoting.wcs = null;
remoting.Wcs = function(wcsIqClient, token, onReady) {
/**
* The WCS client.
- * @type {remoting.WcsIqClient}
- * @private
+ * @private {remoting.WcsIqClient}
*/
this.wcsIqClient_ = wcsIqClient;
/**
* The OAuth2 access token.
- * @type {string}
- * @private
+ * @private {string}
*/
this.token_ = token;
/**
* The function called when the WCS client has received a full JID.
- * @type {?function(string): void}
- * @private
+ * @private {?function(string): void}
*/
this.onReady_ = onReady;
/**
* The full JID of the WCS client.
- * @type {string}
- * @private
+ * @private {string}
*/
this.clientFullJid_ = '';
« no previous file with comments | « remoting/webapp/crd/js/toolbar.js ('k') | remoting/webapp/crd/js/wcs_adapter.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698