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

Unified Diff: remoting/webapp/app_remoting/js/application_context_menu.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
Index: remoting/webapp/app_remoting/js/application_context_menu.js
diff --git a/remoting/webapp/app_remoting/js/application_context_menu.js b/remoting/webapp/app_remoting/js/application_context_menu.js
index 50a429b2b546973b21b63e4b01b4a07e263cb45f..2ba7937dae0f313d29db0f792db6c8240cc7ef80 100644
--- a/remoting/webapp/app_remoting/js/application_context_menu.js
+++ b/remoting/webapp/app_remoting/js/application_context_menu.js
@@ -17,10 +17,7 @@ var remoting = remoting || {};
* @constructor
*/
remoting.ApplicationContextMenu = function(adapter) {
- /**
- * @type {remoting.ContextMenuAdapter}
- * @private
- */
+ /** @private {remoting.ContextMenuAdapter} */
this.adapter_ = adapter;
this.adapter_.create(
@@ -33,10 +30,7 @@ remoting.ApplicationContextMenu = function(adapter) {
true);
this.adapter_.addListener(this.onClicked_.bind(this));
- /**
- * @type {string}
- * @private
- */
+ /** @private {string} */
this.hostId_ = '';
};
« no previous file with comments | « remoting/webapp/app_remoting/js/app_remoting.js ('k') | remoting/webapp/app_remoting/js/context_menu_dom.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698