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

Unified Diff: chrome/browser/resources/print_preview/data/user_info.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: chrome/browser/resources/print_preview/data/user_info.js
diff --git a/chrome/browser/resources/print_preview/data/user_info.js b/chrome/browser/resources/print_preview/data/user_info.js
index 88967cefdedfa774c53952c7ccc725416e85f716..0d7ade2238d1b97127e710c703eff293b71d984c 100644
--- a/chrome/browser/resources/print_preview/data/user_info.js
+++ b/chrome/browser/resources/print_preview/data/user_info.js
@@ -24,7 +24,7 @@ cr.define('print_preview', function() {
/**
* Email addresses of the logged in users or empty array if no user is
* logged in. {@code null} if not known yet.
- * @private {?Array.<string>}
+ * @private {?Array<string>}
*/
this.users_ = null;
};
@@ -68,7 +68,7 @@ cr.define('print_preview', function() {
},
/**
- * @return {?Array.<string>} Email addresses of the logged in users or
+ * @return {?Array<string>} Email addresses of the logged in users or
* empty array if no user is logged in. {@code null} if not known yet.
*/
get users() {
@@ -78,7 +78,7 @@ cr.define('print_preview', function() {
/**
* Sets logged in user accounts info.
* @param {string} activeUser Active user account (email).
- * @param {!Array.<string>} users List of currently logged in accounts.
+ * @param {!Array<string>} users List of currently logged in accounts.
*/
setUsers: function(activeUser, users) {
this.activeUser_ = activeUser;

Powered by Google App Engine
This is Rietveld 408576698