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

Unified Diff: remoting/webapp/crd/js/client_session.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/client_plugin_impl.js ('k') | remoting/webapp/crd/js/connection_stats.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/client_session.js
diff --git a/remoting/webapp/crd/js/client_session.js b/remoting/webapp/crd/js/client_session.js
index c5d95c90ad2c69330c7cf90e9350dca6a785211a..2459ba35db4db7ab1fffd365dda9258169a68110 100644
--- a/remoting/webapp/crd/js/client_session.js
+++ b/remoting/webapp/crd/js/client_session.js
@@ -261,7 +261,7 @@ remoting.ClientSession.Capability = {
/**
* The set of capabilities negotiated between the client and host.
- * @type {Array.<string>}
+ * @type {Array<string>}
* @private
*/
remoting.ClientSession.prototype.capabilities_ = null;
@@ -285,7 +285,7 @@ remoting.ClientSession.prototype.hasCapability = function(capability) {
* @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.ClientSession.prototype.createPluginAndConnect =
@@ -604,7 +604,7 @@ remoting.ClientSession.prototype.onConnectionReady_ = function(ready) {
/**
* Called when the client-host capabilities negotiation is complete.
*
- * @param {!Array.<string>} capabilities The set of capabilities negotiated
+ * @param {!Array<string>} capabilities The set of capabilities negotiated
* between the client and host.
* @return {void} Nothing.
* @private
« no previous file with comments | « remoting/webapp/crd/js/client_plugin_impl.js ('k') | remoting/webapp/crd/js/connection_stats.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698