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

Unified Diff: remoting/webapp/base/js/auth_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/base/js/application.js ('k') | remoting/webapp/base/js/ipc.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/base/js/auth_dialog.js
diff --git a/remoting/webapp/base/js/auth_dialog.js b/remoting/webapp/base/js/auth_dialog.js
index 34b621c885d23b6f510466b67bff12d927590b73..6cde0e87ae8e71bf4a16cfda01ee7dae486c3ca5 100644
--- a/remoting/webapp/base/js/auth_dialog.js
+++ b/remoting/webapp/base/js/auth_dialog.js
@@ -19,28 +19,16 @@ var instance_ = null;
* @private
*/
remoting.AuthDialog = function(rootElement) {
- /**
- * @type {HTMLElement}
- * @private
- */
+ /** @private {HTMLElement} */
this.rootElement_ = rootElement;
- /**
- * @type {HTMLElement}
- * @private
- */
+ /** @private {HTMLElement} */
this.borderElement_ = rootElement.querySelector('#auth-dialog-border');
- /**
- * @type {HTMLElement}
- * @private
- */
+ /** @private {HTMLElement} */
this.authButton_ = rootElement.querySelector('#auth-button');
- /**
- * @type {base.Deferred}
- * @private
- */
+ /** @private {base.Deferred} */
this.onAuthButtonDeferred_ = null;
this.authButton_.addEventListener('click', this.onClick_.bind(this), false);
« no previous file with comments | « remoting/webapp/base/js/application.js ('k') | remoting/webapp/base/js/ipc.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698