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

Unified Diff: chrome/browser/resources/print_preview/component.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/component.js
diff --git a/chrome/browser/resources/print_preview/component.js b/chrome/browser/resources/print_preview/component.js
index 2238ab0119b14d5c6b4812ccfe7ef90eb95e2af4..3c18829a22e2e16a445447b69bc77a467f05dc62 100644
--- a/chrome/browser/resources/print_preview/component.js
+++ b/chrome/browser/resources/print_preview/component.js
@@ -31,7 +31,7 @@ cr.define('print_preview', function() {
/**
* Child components of the component.
- * @type {!Array.<!print_preview.Component>}
+ * @type {!Array<!print_preview.Component>}
* @private
*/
this.children_ = [];
@@ -119,7 +119,7 @@ cr.define('print_preview', function() {
},
/**
- * @return {!Array.<!print_preview.Component>} Child components of this
+ * @return {!Array<!print_preview.Component>} Child components of this
* component.
*/
get children() {

Powered by Google App Engine
This is Rietveld 408576698