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

Unified Diff: remoting/webapp/crd/js/host_install_dialog.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/host_daemon_facade.js ('k') | remoting/webapp/crd/js/host_installer.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/host_install_dialog.js
diff --git a/remoting/webapp/crd/js/host_install_dialog.js b/remoting/webapp/crd/js/host_install_dialog.js
index ab072e830eecafb866a892183a70526a8714be51..ecfb2048a5c13408bf8b3083cf6d4ba2ab7fd700 100644
--- a/remoting/webapp/crd/js/host_install_dialog.js
+++ b/remoting/webapp/crd/js/host_install_dialog.js
@@ -27,16 +27,16 @@ remoting.HostInstallDialog = function() {
this.continueInstallButton_.disabled = false;
this.cancelInstallButton_.disabled = false;
- /** @private*/
+ /** @private */
this.onDoneHandler_ = function() {};
- /** @param {remoting.Error} error @private */
- this.onErrorHandler_ = function(error) {};
-
/**
- * @type {remoting.HostInstaller}
+ * @param {remoting.Error} error
* @private
*/
+ this.onErrorHandler_ = function(error) {};
+
+ /** @private {remoting.HostInstaller} */
this.hostInstaller_ = new remoting.HostInstaller();
};
« no previous file with comments | « remoting/webapp/crd/js/host_daemon_facade.js ('k') | remoting/webapp/crd/js/host_installer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698