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

Unified Diff: remoting/webapp/crd/js/host_daemon_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/fullscreen_v2.js ('k') | remoting/webapp/crd/js/host_install_dialog.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/host_daemon_facade.js
diff --git a/remoting/webapp/crd/js/host_daemon_facade.js b/remoting/webapp/crd/js/host_daemon_facade.js
index 193a7562a609a18097f2e2a5e0d8d962592627dd..a9d80373e35a63eafa064a83154f67c5ccc107fa 100644
--- a/remoting/webapp/crd/js/host_daemon_facade.js
+++ b/remoting/webapp/crd/js/host_daemon_facade.js
@@ -16,39 +16,32 @@ var remoting = remoting || {};
* @constructor
*/
remoting.HostDaemonFacade = function() {
- /**
- * @type {number}
- * @private
- */
+ /** @private {number} */
this.nextId_ = 0;
- /**
- * @type {Object<number, remoting.HostDaemonFacade.PendingReply>}
- * @private
- */
+ /** @private {Object<number, remoting.HostDaemonFacade.PendingReply>} */
this.pendingReplies_ = {};
- /** @type {?chrome.runtime.Port} @private */
+ /** @private {?chrome.runtime.Port} */
this.port_ = null;
- /** @type {string} @private */
+ /** @private {string} */
this.version_ = '';
- /** @type {Array<remoting.HostController.Feature>} @private */
+ /** @private {Array<remoting.HostController.Feature>} */
this.supportedFeatures_ = [];
- /** @type {Array<function(boolean):void>} @private */
+ /** @private {Array<function(boolean):void>} */
this.afterInitializationTasks_ = [];
/**
* A promise that fulfills when the daemon finishes initializing.
* It will be set to null when the promise fulfills.
- * @type {Promise}
- * @private
+ * @private {Promise}
*/
this.initializingPromise_ = null;
- /** @type {remoting.Error} @private */
+ /** @private {remoting.Error} */
this.error_ = remoting.Error.NONE;
/** @private */
« no previous file with comments | « remoting/webapp/crd/js/fullscreen_v2.js ('k') | remoting/webapp/crd/js/host_install_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698