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

Unified Diff: remoting/webapp/base/js/window_shape.js

Issue 917093003: Shorten Closure template notation from Array.<*> to Array<*>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove cvox 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/base/js/window_shape.js
diff --git a/remoting/webapp/base/js/window_shape.js b/remoting/webapp/base/js/window_shape.js
index cbeea972ecfa6efac344e2a24f0cdc7223498e0f..dc3ddd109a28433665e381e9406261efc7aa30c0 100644
--- a/remoting/webapp/base/js/window_shape.js
+++ b/remoting/webapp/base/js/window_shape.js
@@ -16,13 +16,13 @@ var remoting = remoting || {};
/** @constructor */
remoting.WindowShape = function() {
/**
- * @type {Array.<{left: number, top: number, width: number, height: number}>}
+ * @type {Array<{left: number, top: number, width: number, height: number}>}
* @private
*/
this.desktopRects_ = [];
/**
- * @type {Array.<remoting.WindowShape.ClientUI>}
+ * @type {Array<remoting.WindowShape.ClientUI>}
* @private
*/
this.clientUICallbacks_ = [];
@@ -49,7 +49,7 @@ remoting.WindowShape.prototype.addCallback = function(callback) {
/**
* Set the region associated with the remote desktop windows.
*
- * @param {Array.<{left: number, top: number, width: number, height: number}>}
+ * @param {Array<{left: number, top: number, width: number, height: number}>}
* rects
*/
remoting.WindowShape.prototype.setDesktopRects = function(rects) {
@@ -93,7 +93,7 @@ remoting.WindowShape.ClientUI = function () {
/**
* Add the context menu's bounding rectangle to the specified region.
*
- * @param {Array.<{left: number, top: number, width: number, height: number}>}
+ * @param {Array<{left: number, top: number, width: number, height: number}>}
* rects
*/
remoting.WindowShape.ClientUI.prototype.addToRegion = function(rects) {};
« no previous file with comments | « remoting/webapp/base/js/message_window_manager.js ('k') | remoting/webapp/browser_test/mock_host_list_api.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698