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

Unified Diff: remoting/webapp/crd/js/it2me_host_facade.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/identity.js ('k') | remoting/webapp/crd/js/log_to_server.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {};
};
« no previous file with comments | « remoting/webapp/crd/js/identity.js ('k') | remoting/webapp/crd/js/log_to_server.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698