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

Unified Diff: remoting/webapp/app_remoting/js/app_remoting.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 | « no previous file | remoting/webapp/app_remoting/js/application_context_menu.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/app_remoting/js/app_remoting.js
diff --git a/remoting/webapp/app_remoting/js/app_remoting.js b/remoting/webapp/app_remoting/js/app_remoting.js
index 950b6f7c408a89bf1683eb026cfe9c2429b9367a..bda4fdce65346327ab039b9aa22bdf01597402b0 100644
--- a/remoting/webapp/app_remoting/js/app_remoting.js
+++ b/remoting/webapp/app_remoting/js/app_remoting.js
@@ -21,28 +21,16 @@ var remoting = remoting || {};
remoting.AppRemoting = function(app) {
app.setDelegate(this);
- /**
- * @type {remoting.ApplicationContextMenu}
- * @private
- */
+ /** @private {remoting.ApplicationContextMenu} */
this.contextMenu_ = null;
- /**
- * @type {remoting.KeyboardLayoutsMenu}
- * @private
- */
+ /** @private {remoting.KeyboardLayoutsMenu} */
this.keyboardLayoutsMenu_ = null;
- /**
- * @type {remoting.WindowActivationMenu}
- * @private
- */
+ /** @private {remoting.WindowActivationMenu} */
this.windowActivationMenu_ = null;
- /**
- * @type {number}
- * @private
- */
+ /** @private {number} */
this.pingTimerId_ = 0;
};
« no previous file with comments | « no previous file | remoting/webapp/app_remoting/js/application_context_menu.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698