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

Unified Diff: remoting/webapp/crd/js/xmpp_connection.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/xhr_proxy.js ('k') | remoting/webapp/crd/js/xmpp_login_handler.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/xmpp_connection.js
diff --git a/remoting/webapp/crd/js/xmpp_connection.js b/remoting/webapp/crd/js/xmpp_connection.js
index ff9f4111fd03b92837208104f09b7289e791026b..79ab9b8813a033a037d9a1a3956a565eeca69be3 100644
--- a/remoting/webapp/crd/js/xmpp_connection.js
+++ b/remoting/webapp/crd/js/xmpp_connection.js
@@ -23,9 +23,9 @@ remoting.XmppConnection = function() {
this.server_ = '';
/** @private */
this.port_ = 0;
- /** @type {?function(remoting.SignalStrategy.State):void} @private */
+ /** @private {?function(remoting.SignalStrategy.State):void} */
this.onStateChangedCallback_ = null;
- /** @type {?function(Element):void} @private */
+ /** @private {?function(Element):void} */
this.onIncomingStanzaCallback_ = null;
/** @private */
this.socketId_ = -1;
@@ -37,11 +37,11 @@ remoting.XmppConnection = function() {
this.sendPending_ = false;
/** @private */
this.startTlsPending_ = false;
- /** @type {Array<ArrayBuffer>} @private */
+ /** @private {Array<ArrayBuffer>} */
this.sendQueue_ = [];
- /** @type {remoting.XmppLoginHandler} @private*/
+ /** @private {remoting.XmppLoginHandler} */
this.loginHandler_ = null;
- /** @type {remoting.XmppStreamParser} @private*/
+ /** @private {remoting.XmppStreamParser} */
this.streamParser_ = null;
/** @private */
this.jid_ = '';
« no previous file with comments | « remoting/webapp/crd/js/xhr_proxy.js ('k') | remoting/webapp/crd/js/xmpp_login_handler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698