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

Unified Diff: chrome/browser/resources/print_preview/data/ticket_items/vendor_items.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/vendor_items.js
diff --git a/chrome/browser/resources/print_preview/data/ticket_items/vendor_items.js b/chrome/browser/resources/print_preview/data/ticket_items/vendor_items.js
index b347ff8a2b38709464d2b4e338c10f3a517d706c..e3cf19f8ace872a56040ae247545f63681dfd38a 100644
--- a/chrome/browser/resources/print_preview/data/ticket_items/vendor_items.js
+++ b/chrome/browser/resources/print_preview/data/ticket_items/vendor_items.js
@@ -37,7 +37,7 @@ cr.define('print_preview.ticket_items', function() {
/**
* Vendor ticket items store, maps item id to the item value.
- * @private {!Object.<string, string>}
+ * @private {!Object<string, string>}
*/
this.items_ = {};
};
@@ -78,14 +78,14 @@ cr.define('print_preview.ticket_items', function() {
/**
* Vendor ticket items store, maps item id to the item value.
- * @return {!Object.<string, string>}
+ * @return {!Object<string, string>}
*/
get ticketItems() {
return this.items_;
},
/**
- * @param {!Object.<string, string>} values Values to set as the values of
+ * @param {!Object<string, string>} values Values to set as the values of
* vendor ticket items. Maps vendor item id to the value.
*/
updateValue: function(values) {

Powered by Google App Engine
This is Rietveld 408576698