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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/memoize.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/memoize.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/memoize.js b/chrome/browser/resources/chromeos/chromevox/common/memoize.js
index 271722c99e5010c3fc55331152adb47aec50bdc4..227b26f26469a986e427251c6d70b2f26ba4b9bf 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/memoize.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/memoize.js
@@ -51,7 +51,7 @@ cvox.Memoize = function() {
* to function result. This variable is null when we're out of scope, and it's
* a map from string to WeakMap to result when we're in scope.
*
- * @type {?Object.<string, WeakMap.<Node, *> >}
+ * @type {?Object<string, WeakMap<Node, *> >}
* @private
*/
cvox.Memoize.nodeMap_ = null;

Powered by Google App Engine
This is Rietveld 408576698