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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/chromevox.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/chromevox.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/chromevox.js b/chrome/browser/resources/chromeos/chromevox/common/chromevox.js
index c5f9aa6025de4a29f0fd739fbb68b3df5d8f13f1..04c0bd36673cc89711223f085dbb9f4a50e18593 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/chromevox.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/chromevox.js
@@ -150,11 +150,11 @@ cvox.ChromeVox.verbosity = cvox.VERBOSITY_VERBOSE;
cvox.ChromeVox.typingEcho = 0;
/**
* Echoing on key press events.
- * @type {Object.<string, boolean>}
+ * @type {Object<string, boolean>}
*/
cvox.ChromeVox.keyEcho = {};
/**
- * @type {Object.<string, {x:number, y:number}>}
+ * @type {Object<string, {x:number, y:number}>}
*/
cvox.ChromeVox.position = {};
/**
@@ -181,10 +181,10 @@ if (cvox.ChromeVox.isChromeOS) {
* where the subsequent independent key downs (while modifier keys are down)
* are a part of the same shortcut. This array is populated in
* cvox.ChromeVoxKbHandler.loadKeyToFunctionsTable().
- * @type {!Array.<cvox.KeySequence>}
+ * @type {!Array<cvox.KeySequence>}
*/
cvox.ChromeVox.sequenceSwitchKeyCodes = [];
-/** @type {Object.<string, boolean>} */
+/** @type {Object<string, boolean>} */
cvox.ChromeVox.visitedUrls = {};
/**
* This function can be called before doing an operation that may trigger

Powered by Google App Engine
This is Rietveld 408576698