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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/find_util.js

Issue 924083004: Shorten Closure template notation from Array.<*> to Array<*> in cvox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/chromeos/chromevox/common/find_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/find_util.js b/chrome/browser/resources/chromeos/chromevox/common/find_util.js
index 486d406b6f5e9fa1b622c44196b92ae9564412bd..a5ac8a6b3713453e9e932c205c4443d86ee24646 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/find_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/find_util.js
@@ -24,7 +24,7 @@ cvox.FindUtil.objectWalker_ = new cvox.BareObjectWalker();
* Finds the next selection that matches the predicate function starting from
* sel. Undefined if the nodes in sel are not attached to the document.
* @param {!cvox.CursorSelection} sel The selection from which to start.
- * @param {function(Array.<Node>):Node} predicate A function taking a
+ * @param {function(Array<Node>):Node} predicate A function taking a
* unique ancestor tree and outputting Node if the ancestor tree matches
* the desired node to find.
* @param {boolean=} opt_initialNode Whether to start the search from node

Powered by Google App Engine
This is Rietveld 408576698