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

Unified Diff: remoting/webapp/crd/js/paired_client_manager.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/oauth2.js ('k') | remoting/webapp/crd/js/server_log_entry.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/crd/js/paired_client_manager.js
diff --git a/remoting/webapp/crd/js/paired_client_manager.js b/remoting/webapp/crd/js/paired_client_manager.js
index d001cf31b5c7e38d29abf74152d8f8fcd3503bb7..2dd851c53dd5045922c0838a208b7103ddffab32 100644
--- a/remoting/webapp/crd/js/paired_client_manager.js
+++ b/remoting/webapp/crd/js/paired_client_manager.js
@@ -91,7 +91,7 @@ remoting.PairedClient.prototype.isValid = function() {
* the input object is incorrectly formatted.
*
* @param {*} pairedClients The object to convert.
- * @return {Array.<remoting.PairedClient>} The converted result.
+ * @return {Array<remoting.PairedClient>} The converted result.
*/
remoting.PairedClient.convertToPairedClientArray = function(pairedClients) {
if (!(pairedClients instanceof Array)) {
@@ -168,7 +168,7 @@ remoting.PairedClientManager = function(hostController, listContainer, message,
*/
this.clientRows_ = listContainer.querySelector('tbody');
/**
- * @type {Array.<remoting.PairedClient>}
+ * @type {Array<remoting.PairedClient>}
*/
this.pairedClients_ = [];
« no previous file with comments | « remoting/webapp/crd/js/oauth2.js ('k') | remoting/webapp/crd/js/server_log_entry.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698