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

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/testing/tts.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/host/testing/tts.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/testing/tts.js b/chrome/browser/resources/chromeos/chromevox/host/testing/tts.js
index a16e300854e64bd3e6641bf6c1b617a4b0e713f6..168769bde6cff9a665f766804f344c3420c09fad 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/testing/tts.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/testing/tts.js
@@ -90,7 +90,7 @@ cvox.TestTts.prototype.getUtterancesAsString = function() {
*
* For example, if two strings were spoken with a queue mode of FLUSH,
* only the second string will be returned.
- * @return {Array.<string>} A list of strings representing the speech output.
+ * @return {Array<string>} A list of strings representing the speech output.
*/
cvox.TestTts.prototype.getSpeechQueueOutput = function() {
var queue = [];
@@ -118,7 +118,7 @@ cvox.TestTts.prototype.getSpeechQueueOutput = 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.TestTts.prototype.getUtteranceList = function() {
@@ -131,7 +131,7 @@ cvox.TestTts.prototype.getUtteranceList = function() {
/**
* Return a list of strings of what was spoken by tts.speak().
- * @return {Array.<{text: string, queueMode: cvox.QueueMode}>}
+ * @return {Array<{text: string, queueMode: cvox.QueueMode}>}
* A list of info about all utterances spoken since
* initialization or the last call to clearUtterances.
*/

Powered by Google App Engine
This is Rietveld 408576698