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

Unified Diff: chrome/browser/resources/chromeos/chromevox/common/key_util.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/key_util.js
diff --git a/chrome/browser/resources/chromeos/chromevox/common/key_util.js b/chrome/browser/resources/chromeos/chromevox/common/key_util.js
index 9bbf893c5ef7c12bc2d5374f7d5fd76b4cd34901..26b2ef0a0b53af0f8811b516dd56ea92a9a14ff9 100644
--- a/chrome/browser/resources/chromeos/chromevox/common/key_util.js
+++ b/chrome/browser/resources/chromeos/chromevox/common/key_util.js
@@ -199,7 +199,7 @@ cvox.KeyUtil.modStringToKeyCode = function(keyString) {
/**
* Returns the key codes of a string respresentation of the ChromeVox modifiers.
*
- * @return {Array.<number>} Array of key codes.
+ * @return {Array<number>} Array of key codes.
*/
cvox.KeyUtil.cvoxModKeyCodes = function() {
var modKeyCombo = cvox.ChromeVox.modKeyStr.split(/\+/g);

Powered by Google App Engine
This is Rietveld 408576698