Index: remoting/webapp/crd/js/it2me_host_facade.js |
diff --git a/remoting/webapp/crd/js/it2me_host_facade.js b/remoting/webapp/crd/js/it2me_host_facade.js |
index c33f8ebdf8872fcb02cb9c4c9b03508a538549ed..2d94a37ea9cc9785189e0c9fc61c8b7f838a5724 100644 |
--- a/remoting/webapp/crd/js/it2me_host_facade.js |
+++ b/remoting/webapp/crd/js/it2me_host_facade.js |
@@ -40,10 +40,7 @@ remoting.It2MeHostFacade = function() { |
/** @private {base.Disposables} */ |
this.eventHooks_ = null; |
- /** |
- * @type {?function():void} |
- * @private |
- */ |
+ /** @private {?function():void} */ |
this.onInitialized_ = function() {}; |
/** |
@@ -55,21 +52,14 @@ remoting.It2MeHostFacade = function() { |
/** |
* Called if the It2Me Native Messaging host sends a malformed message: |
* missing required attributes, attributes with incorrect types, etc. |
- * @type {?function(remoting.Error):void} |
- * @private |
+ * @private {?function(remoting.Error):void} |
*/ |
this.onError_ = function(error) {}; |
- /** |
- * @type {?function(remoting.HostSession.State):void} |
- * @private |
- */ |
+ /** @private {?function(remoting.HostSession.State):void} */ |
this.onStateChanged_ = function() {}; |
- /** |
- * @type {?function(boolean):void} |
- * @private |
- */ |
+ /** @private {?function(boolean):void} */ |
this.onNatPolicyChanged_ = function() {}; |
}; |