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

Unified Diff: remoting/webapp/base/js/application.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/app_remoting/js/window_activation_menu.js ('k') | remoting/webapp/base/js/auth_dialog.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/base/js/application.js
diff --git a/remoting/webapp/base/js/application.js b/remoting/webapp/base/js/application.js
index d270cc9f989c953b75d47f41ecd35ea5e7f6494f..d49a0ea721998eb73f246d4dc1e7934d56f229be 100644
--- a/remoting/webapp/base/js/application.js
+++ b/remoting/webapp/base/js/application.js
@@ -30,16 +30,10 @@ remoting.desktopConnectedView = null;
* @constructor
*/
remoting.Application = function(app_capabilities) {
- /**
- * @type {remoting.Application.Delegate}
- * @private
- */
+ /** @private {remoting.Application.Delegate} */
this.delegate_ = null;
- /**
- * @type {Array<string>}
- * @private
- */
+ /** @private {Array<string>} */
this.app_capabilities_ = [
remoting.ClientSession.Capability.SEND_INITIAL_RESOLUTION,
remoting.ClientSession.Capability.RATE_LIMIT_RESIZE_REQUESTS,
@@ -48,10 +42,7 @@ remoting.Application = function(app_capabilities) {
// Append the app-specific capabilities.
this.app_capabilities_.push.apply(this.app_capabilities_, app_capabilities);
- /**
- * @type {remoting.SessionConnector}
- * @private
- */
+ /** @private {remoting.SessionConnector} */
this.session_connector_ = null;
/** @private {base.Disposable} */
« no previous file with comments | « remoting/webapp/app_remoting/js/window_activation_menu.js ('k') | remoting/webapp/base/js/auth_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698