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

Unified Diff: chrome/browser/resources/chromeos/chromevox/testing/tester.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/testing/tester.js
diff --git a/chrome/browser/resources/chromeos/chromevox/testing/tester.js b/chrome/browser/resources/chromeos/chromevox/testing/tester.js
index 1f226bdac79f08929cffe9937766ba4839a8b57b..13012d9d0c52d20a32334f3daf9f065367dea7bb 100644
--- a/chrome/browser/resources/chromeos/chromevox/testing/tester.js
+++ b/chrome/browser/resources/chromeos/chromevox/testing/tester.js
@@ -84,7 +84,7 @@ cvox.ChromeVoxTester.clearUtterances = function() {
/**
* Return a list of strings of what was spoken by tts.speak().
- * @return {Array.<string>} A list of all utterances spoken since
+ * @return {Array<string>} A list of all utterances spoken since
* initialization or the last call to clearUtterances.
*/
cvox.ChromeVoxTester.getUtteranceList = function() {
@@ -92,7 +92,7 @@ cvox.ChromeVoxTester.getUtteranceList = function() {
};
/**
- * @type {Object.<string, number>} Map from a navigation strategy name
+ * @type {Object<string, number>} Map from a navigation strategy name
* to the Navigation Manager strategy enum.
*/
cvox.ChromeVoxTester.STRATEGY_MAP = {

Powered by Google App Engine
This is Rietveld 408576698