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

Unified Diff: chrome/browser/resources/chromeos/chromevox/speech_rules/speech_rule_evaluator.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/speech_rules/speech_rule_evaluator.js
diff --git a/chrome/browser/resources/chromeos/chromevox/speech_rules/speech_rule_evaluator.js b/chrome/browser/resources/chromeos/chromevox/speech_rules/speech_rule_evaluator.js
index d51e4595d111a5658c9039ce123f9924b7102acd..a355c81daf71d898dd92905bac79c8c0c1993cf6 100644
--- a/chrome/browser/resources/chromeos/chromevox/speech_rules/speech_rule_evaluator.js
+++ b/chrome/browser/resources/chromeos/chromevox/speech_rules/speech_rule_evaluator.js
@@ -23,6 +23,6 @@ cvox.SpeechRuleEvaluator = goog.abstractMethod;
/**
* Default evaluation of a node if no speech rule is applicable.
* @param {!Node} node The target node (or root of subtree).
- * @return {!Array.<cvox.NavDescription>} The resulting description.
+ * @return {!Array<cvox.NavDescription>} The resulting description.
*/
cvox.SpeechRuleEvaluator.prototype.evaluateDefault = goog.abstractMethod;

Powered by Google App Engine
This is Rietveld 408576698