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

Unified Diff: remoting/webapp/crd/js/wcs_sandbox_container.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/wcs_loader.js ('k') | remoting/webapp/crd/js/wcs_sandbox_content.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/wcs_sandbox_container.js
diff --git a/remoting/webapp/crd/js/wcs_sandbox_container.js b/remoting/webapp/crd/js/wcs_sandbox_container.js
index c39759879cbab9deb153b70e2adcb05b13b99abc..521dfbe9434689080c552f3433225c07429259c7 100644
--- a/remoting/webapp/crd/js/wcs_sandbox_container.js
+++ b/remoting/webapp/crd/js/wcs_sandbox_container.js
@@ -22,17 +22,13 @@ var remoting = remoting || {};
remoting.WcsSandboxContainer = function(sandbox) {
/** @private */
this.sandbox_ = sandbox;
- /** @type {?function(string):void}
- * @private */
+ /** @private {?function(string):void} */
this.onConnected_ = null;
- /** @type {function(remoting.Error):void}
- * @private */
+ /** @private {function(remoting.Error):void} */
this.onError_ = function(error) {};
- /** @type {?function(string):void}
- * @private */
+ /** @private {?function(string):void} */
this.onIq_ = null;
- /** @type {Object<number, XMLHttpRequest>}
- * @private */
+ /** @private {Object<number, XMLHttpRequest>} */
this.pendingXhrs_ = {};
/** @private */
this.localJid_ = '';
« no previous file with comments | « remoting/webapp/crd/js/wcs_loader.js ('k') | remoting/webapp/crd/js/wcs_sandbox_content.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698