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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/interframe.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/interframe.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/interframe.js b/chrome/browser/resources/chromeos/chromevox/common/interframe.js
index 1da0d8b5aba0f106fc075eac3260ed539964e685..8d7b7fc117f55da7bb99c25783118bbdb72e86ac 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/interframe.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/interframe.js
@@ -57,14 +57,14 @@ cvox.Interframe.id;
/**
* Array of functions that have been registered as listeners to interframe
* messages send to this window.
- * @type {Array.<function(Object)>}
+ * @type {Array<function(Object)>}
*/
cvox.Interframe.listeners = [];
/**
* Maps an id to a function which gets called when a frame first sends an ack
* for a set id msg.
- @dict {!Object.<number|string, function()>}
+ @dict {!Object<number|string, function()>}
* @private
*/
cvox.Interframe.idToCallback_ = {};

Powered by Google App Engine
This is Rietveld 408576698