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

Unified Diff: remoting/webapp/crd/js/wcs_adapter.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.js ('k') | remoting/webapp/crd/js/wcs_loader.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/wcs_adapter.js
diff --git a/remoting/webapp/crd/js/wcs_adapter.js b/remoting/webapp/crd/js/wcs_adapter.js
index d68eaf91a81a4d228ee0113d2fd1525643658e6b..ef04feb108f6386f68d0bb54e5779bc9f2e6b93e 100644
--- a/remoting/webapp/crd/js/wcs_adapter.js
+++ b/remoting/webapp/crd/js/wcs_adapter.js
@@ -15,9 +15,9 @@ var remoting = remoting || {};
* @implements {remoting.SignalStrategy}
*/
remoting.WcsAdapter = function() {
- /** @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.state_ = remoting.SignalStrategy.State.NOT_CONNECTED;
« no previous file with comments | « remoting/webapp/crd/js/wcs.js ('k') | remoting/webapp/crd/js/wcs_loader.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698