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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/node_search_widget.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/chromevox/injected/ui/node_search_widget.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/node_search_widget.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/node_search_widget.js
index 093642c0ecd8fea4814004aea2f0b948e6693f9b..54e2edb34ca8dbc3fb699ce7bd99ab45e5a5265f 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/node_search_widget.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/node_search_widget.js
@@ -19,7 +19,7 @@ goog.require('cvox.SpokenMessages');
* @constructor
* @param {string} typeMsg A message id identifying the type of items
* contained in the list.
- * @param {?function(Array.<Node>)} predicate A predicate; if null, no predicate
+ * @param {?function(Array<Node>)} predicate A predicate; if null, no predicate
* applies.
* @extends {cvox.SearchWidget}
*/
@@ -58,7 +58,7 @@ cvox.NodeSearchWidget.prototype.getPredicate = function() {
/**
* Shows a list generated dynamic satisfying some predicate.
* @param {string} typeMsg The message id of the type contained in nodes.
- * @param {function(Array.<Node>)} predicate The predicate.
+ * @param {function(Array<Node>)} predicate The predicate.
* @return {cvox.NodeSearchWidget} The widget.
*/
cvox.NodeSearchWidget.create = function(typeMsg, predicate) {

Powered by Google App Engine
This is Rietveld 408576698