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

Unified Diff: chrome/browser/resources/print_preview/search/destination_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/print_preview/search/destination_list.js
diff --git a/chrome/browser/resources/print_preview/search/destination_list.js b/chrome/browser/resources/print_preview/search/destination_list.js
index d4e1ad0c940684c141d380addae232a1217617cd..cffe09ce65cdbefdce25ea5f9c24ed764bcfa976 100644
--- a/chrome/browser/resources/print_preview/search/destination_list.js
+++ b/chrome/browser/resources/print_preview/search/destination_list.js
@@ -45,14 +45,14 @@ cr.define('print_preview', function() {
/**
* Backing store for the destination list.
- * @type {!Array.<print_preview.Destination>}
+ * @type {!Array<print_preview.Destination>}
* @private
*/
this.destinations_ = [];
/**
* Set of destination ids.
- * @type {!Object.<string, boolean>}
+ * @type {!Object<string, boolean>}
* @private
*/
this.destinationIds_ = {};
@@ -80,7 +80,7 @@ cr.define('print_preview', function() {
/**
* List items representing destinations.
- * @type {!Array.<!print_preview.DestinationListItem>}
+ * @type {!Array<!print_preview.DestinationListItem>}
* @private
*/
this.listItems_ = [];
@@ -198,7 +198,7 @@ cr.define('print_preview', function() {
/**
* Updates the destinations to render in the destination list.
- * @param {!Array.<print_preview.Destination>} destinations Destinations to
+ * @param {!Array<print_preview.Destination>} destinations Destinations to
* render.
*/
updateDestinations: function(destinations) {
@@ -251,7 +251,7 @@ cr.define('print_preview', function() {
/**
* Renders all destinations in the given list.
- * @param {!Array.<print_preview.Destination>} destinations List of
+ * @param {!Array<print_preview.Destination>} destinations List of
* destinations to render.
* @private
*/

Powered by Google App Engine
This is Rietveld 408576698