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

Unified Diff: chrome/browser/resources/options/certificate_tree.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/certificate_tree.js
diff --git a/chrome/browser/resources/options/certificate_tree.js b/chrome/browser/resources/options/certificate_tree.js
index e7752c8858d7b2d6459214b84cfa83f7c83f2bde..6be4eeb2413b3bd7bbe670aac0df988feef58e8f 100644
--- a/chrome/browser/resources/options/certificate_tree.js
+++ b/chrome/browser/resources/options/certificate_tree.js
@@ -6,7 +6,7 @@
* @typedef {{
* id: string,
* name: string,
- * subnodes: Array.<{id: string, name: string, readonly: boolean,
+ * subnodes: Array<{id: string, name: string, readonly: boolean,
* untrusted: boolean, extractable: boolean,
* policy: boolean}>
* }}
@@ -143,7 +143,7 @@ cr.define('options', function() {
/**
* Populate the tree.
- * @param {Array.<CertificateData>} nodesData Nodes data array.
+ * @param {Array<CertificateData>} nodesData Nodes data array.
*/
populate: function(nodesData) {
this.clear();
« no previous file with comments | « chrome/browser/resources/options/browser_options.js ('k') | chrome/browser/resources/options/chromeos/accounts_user_list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698