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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_speaker.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/navigation_speaker.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_speaker.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_speaker.js
index 70cac8d1d2608cf82b517dfa317099d088ef9c01..6de2b8559d74e6ff3feee97b186d6b19693ef96d 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_speaker.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_speaker.js
@@ -38,7 +38,7 @@ cvox.NavigationSpeaker = function() {
* Speak all of the NavDescriptions in the given array (as returned by
* getDescription), including playing earcons.
*
- * @param {Array.<cvox.NavDescription>} descriptionArray The array of
+ * @param {Array<cvox.NavDescription>} descriptionArray The array of
* NavDescriptions to speak.
* @param {number} initialQueueMode The initial queue mode.
* @param {Function} completionFunction Function to call when finished speaking.
@@ -118,9 +118,9 @@ cvox.NavigationSpeaker.structuredElement = function(annon) {
/**
* Reorder special annotations for structured elements to be spoken first.
- * @param {Array.<cvox.NavDescription>} descriptionArray The array of
+ * @param {Array<cvox.NavDescription>} descriptionArray The array of
* NavDescriptions to speak.
- * @return {Array.<cvox.NavDescription>} The reordered array.
+ * @return {Array<cvox.NavDescription>} The reordered array.
*/
cvox.NavigationSpeaker.prototype.reorderAnnotations = function(
descriptionArray) {

Powered by Google App Engine
This is Rietveld 408576698