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

Unified Diff: remoting/webapp/crd/js/desktop_connected_view.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
« no previous file with comments | « remoting/webapp/crd/js/crd_event_handlers.js ('k') | remoting/webapp/crd/js/event_handlers.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/desktop_connected_view.js
diff --git a/remoting/webapp/crd/js/desktop_connected_view.js b/remoting/webapp/crd/js/desktop_connected_view.js
index e56e5ce8dc188b514becf0679624bab8ad4b6d34..0c0eb08c715eb324ed233c1422e92507ee7f2755 100644
--- a/remoting/webapp/crd/js/desktop_connected_view.js
+++ b/remoting/webapp/crd/js/desktop_connected_view.js
@@ -205,7 +205,7 @@ remoting.DesktopConnectedView.prototype.notifyClientResolution_ = function() {
* @param {function(string, string):boolean} onExtensionMessage The handler for
* protocol extension messages. Returns true if a message is recognized;
* false otherwise.
- * @param {Array.<string>} requiredCapabilities A list of capabilities
+ * @param {Array<string>} requiredCapabilities A list of capabilities
* required by this application.
*/
remoting.DesktopConnectedView.prototype.createPluginAndConnect =
@@ -218,7 +218,7 @@ remoting.DesktopConnectedView.prototype.createPluginAndConnect =
};
/**
- * @param {Object.<string|boolean|number>} options The current options for the
+ * @param {Object<string|boolean|number>} options The current options for the
* host, or {} if this client has no saved settings for the host.
* @private
*/
@@ -323,7 +323,7 @@ remoting.DesktopConnectedView.prototype.onDesktopSizeChanged_ = function() {
* Sets the non-click-through area of the client in response to notifications
* from the plugin of desktop shape changes.
*
- * @param {Array.<Array.<number>>} rects List of rectangles comprising the
+ * @param {Array<Array<number>>} rects List of rectangles comprising the
* desktop shape.
* @return {void} Nothing.
* @private
@@ -919,7 +919,7 @@ remoting.DesktopConnectedView.prototype.applyRemapKeys_ = function(apply) {
* Sends a key combination to the remoting client, by sending down events for
* the given keys, followed by up events in reverse order.
*
- * @param {Array.<number>} keys Key codes to be sent.
+ * @param {Array<number>} keys Key codes to be sent.
* @return {void} Nothing.
* @private
*/
« no previous file with comments | « remoting/webapp/crd/js/crd_event_handlers.js ('k') | remoting/webapp/crd/js/event_handlers.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698