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

Unified Diff: chrome/browser/resources/options/autofill_options_list.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/options/autofill_options_list.js
diff --git a/chrome/browser/resources/options/autofill_options_list.js b/chrome/browser/resources/options/autofill_options_list.js
index e62ff0995646a1033e7a665f47cb35ef1a7eee8e..22897302c87961805261139d6ddf91dc48c607c3 100644
--- a/chrome/browser/resources/options/autofill_options_list.js
+++ b/chrome/browser/resources/options/autofill_options_list.js
@@ -235,7 +235,7 @@ cr.define('options.autofillOptions', function() {
* Creates a new name value list item.
* @param {options.autofillOptions.AutofillNameValuesList} list The parent
* list of this item.
- * @param {Array.<string>} entry An array of [first, middle, last] names.
+ * @param {Array<string>} entry An array of [first, middle, last] names.
* @constructor
* @extends {options.autofillOptions.ValuesListItem}
*/
@@ -469,7 +469,7 @@ cr.define('options.autofillOptions', function() {
/**
* @override
- * @param {Array.<string>} entry
+ * @param {Array<string>} entry
*/
createItem: function(entry) {
return new NameListItem(this, entry);
@@ -508,7 +508,7 @@ cr.define('options.autofillOptions', function() {
/**
* Pending Promise resolver functions.
- * @type {Array.<!Function>}
+ * @type {Array<!Function>}
* @private
*/
validationPromiseResolvers_: [],
« no previous file with comments | « chrome/browser/resources/options/autofill_edit_address_overlay.js ('k') | chrome/browser/resources/options/browser_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698