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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/page_selection.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/common/page_selection.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/page_selection.js b/chrome/browser/resources/chromeos/chromevox/common/page_selection.js
index 0517c58f1cd5ffeae01c4cda3eabbecd8e921863..ad39e4a59e3e00d0923e3a89949d4167a127b0cd 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/page_selection.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/page_selection.js
@@ -37,7 +37,7 @@ cvox.PageSelection = function(sel) {
* @param {!cvox.CursorSelection} prevSel Previous CursorSelection in
* navigation.
* @param {!cvox.CursorSelection} curSel Current CursorSelection in navigation.
- * @return {Array.<cvox.NavDescription>} The new description.
+ * @return {Array<cvox.NavDescription>} The new description.
*/
cvox.PageSelection.prototype.getDescription =
function(navShifter, prevSel, curSel) {
@@ -71,7 +71,7 @@ cvox.PageSelection.prototype.getDescription =
* Use this description when you want to describe the entire selection
* represented by this instance.
*
- * @return {Array.<cvox.NavDescription>} The new description.
+ * @return {Array<cvox.NavDescription>} The new description.
*/
cvox.PageSelection.prototype.getFullDescription = function() {
return [new cvox.NavDescription(

Powered by Google App Engine
This is Rietveld 408576698