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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_history.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_history.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_history.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_history.js
index 343fc30571efe09bf78f0582b568d2ed94baa0a8..968564cdc271518f76e4be0357792fe34e79548f 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_history.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/navigation_history.js
@@ -43,7 +43,7 @@ cvox.NavigationHistory.prototype.reset_ = function() {
/**
* An array of nodes ordered from newest to oldest in the history.
* The most recent nodes are at the start of the array.
- * @type {Array.<Node>}
+ * @type {Array<Node>}
* @private
*/
this.history_ = [startNode];

Powered by Google App Engine
This is Rietveld 408576698