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

Unified Diff: remoting/webapp/crd/js/client_plugin.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/cast_extension_handler.js ('k') | remoting/webapp/crd/js/client_plugin_impl.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/client_plugin.js
diff --git a/remoting/webapp/crd/js/client_plugin.js b/remoting/webapp/crd/js/client_plugin.js
index 12f5a6dfc2121324f9adf2e3c14e3c58692bed10..5f21c1c3d564020ff542f7ffecce7653db33da84 100644
--- a/remoting/webapp/crd/js/client_plugin.js
+++ b/remoting/webapp/crd/js/client_plugin.js
@@ -223,14 +223,14 @@ remoting.ClientPlugin.prototype.setDesktopSizeUpdateHandler =
function(handler) {};
/**
- * @param {function(Array.<Array.<number>>):void} handler Callback for desktop
+ * @param {function(Array<Array<number>>):void} handler Callback for desktop
* shape change notifications.
*/
remoting.ClientPlugin.prototype.setDesktopShapeUpdateHandler =
function(handler) {};
/**
- * @param {function(!Array.<string>):void} handler Callback to inform of
+ * @param {function(!Array<string>):void} handler Callback to inform of
* capabilities negotiated between host and client.
*/
remoting.ClientPlugin.prototype.setCapabilitiesHandler =
@@ -309,7 +309,7 @@ remoting.ClientPluginFactory = 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
+ * @param {Array<string>} requiredCapabilities
* @return {remoting.ClientPlugin} A new client plugin instance.
*/
remoting.ClientPluginFactory.prototype.createPlugin =
« no previous file with comments | « remoting/webapp/crd/js/cast_extension_handler.js ('k') | remoting/webapp/crd/js/client_plugin_impl.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698