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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/background.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/cvox2/background/background.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
index c33060899fe391dfc8a3de1b3118514e1d1a699b..6d16a0204ffde382a67b15831ab0576ba378ef93 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
@@ -31,7 +31,7 @@ Background = function() {
/**
* A list of site substring patterns to use with ChromeVox next. Keep these
* strings relatively specific.
- * @type {!Array.<string>}
+ * @type {!Array<string>}
* @private
*/
this.whitelist_ = ['chromevox_next_test'];
@@ -65,7 +65,7 @@ Background = function() {
/**
* Maps an automation event to its listener.
- * @type {!Object.<EventType, function(Object) : void>}
+ * @type {!Object<EventType, function(Object) : void>}
*/
this.listeners_ = {
alert: this.onEventDefault,

Powered by Google App Engine
This is Rietveld 408576698