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

Unified Diff: chrome/browser/resources/print_preview/data/ticket_items/color.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/ticket_items/color.js
diff --git a/chrome/browser/resources/print_preview/data/ticket_items/color.js b/chrome/browser/resources/print_preview/data/ticket_items/color.js
index 11ddd7fc2237220ebaa613a5566eadb6a1d7a996..b1cbe3838faf3cb46f8f05fe42e3fa5d58381f7f 100644
--- a/chrome/browser/resources/print_preview/data/ticket_items/color.js
+++ b/chrome/browser/resources/print_preview/data/ticket_items/color.js
@@ -24,13 +24,13 @@ cr.define('print_preview.ticket_items', function() {
};
/**
- * @private {!Array.<string>} List of capability types considered color.
+ * @private {!Array<string>} List of capability types considered color.
* @const
*/
Color.COLOR_TYPES_ = ['STANDARD_COLOR', 'CUSTOM_COLOR'];
/**
- * @private {!Array.<string>} List of capability types considered monochrome.
+ * @private {!Array<string>} List of capability types considered monochrome.
* @const
*/
Color.MONOCHROME_TYPES_ = ['STANDARD_MONOCHROME', 'CUSTOM_MONOCHROME'];
@@ -114,9 +114,9 @@ cr.define('print_preview.ticket_items', function() {
},
/**
- * @param {!Array.<!Object.<{type: (string|undefined),
+ * @param {!Array<!Object<{type: (string|undefined),
* is_default: (boolean|undefined)}>>} options
- * @return {Object.<{type: (string|undefined),
+ * @return {Object<{type: (string|undefined),
* is_default: (boolean|undefined)}>} Default color
* option of the given list.
* @private

Powered by Google App Engine
This is Rietveld 408576698