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

Unified Diff: remoting/webapp/base/js/window_shape.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/message_window_manager.js ('k') | remoting/webapp/crd/js/activation_handler.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/base/js/window_shape.js
diff --git a/remoting/webapp/base/js/window_shape.js b/remoting/webapp/base/js/window_shape.js
index dc3ddd109a28433665e381e9406261efc7aa30c0..aa21a84e9a8cf20f6d9abdec368b8bfcd55bb7ce 100644
--- a/remoting/webapp/base/js/window_shape.js
+++ b/remoting/webapp/base/js/window_shape.js
@@ -15,16 +15,11 @@ var remoting = remoting || {};
/** @constructor */
remoting.WindowShape = function() {
- /**
- * @type {Array<{left: number, top: number, width: number, height: number}>}
- * @private
- */
+ /** @private {Array<{left: number, top: number,
+ width: number, height: number}>} */
this.desktopRects_ = [];
- /**
- * @type {Array<remoting.WindowShape.ClientUI>}
- * @private
- */
+ /** @private {Array<remoting.WindowShape.ClientUI>} */
this.clientUICallbacks_ = [];
};
« no previous file with comments | « remoting/webapp/base/js/message_window_manager.js ('k') | remoting/webapp/crd/js/activation_handler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698