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

Unified Diff: chrome/browser/resources/options/chromeos/keyboard_overlay.js

Issue 917093003: Shorten Closure template notation from Array.<*> to Array<*>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove cvox 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/options/chromeos/keyboard_overlay.js
diff --git a/chrome/browser/resources/options/chromeos/keyboard_overlay.js b/chrome/browser/resources/options/chromeos/keyboard_overlay.js
index ae4baa03efe97901005a397e3580c9ac411e64fe..b18af10166e3d07f18f45a7d9880e5d5c0ade7f1 100644
--- a/chrome/browser/resources/options/chromeos/keyboard_overlay.js
+++ b/chrome/browser/resources/options/chromeos/keyboard_overlay.js
@@ -8,7 +8,7 @@ cr.define('options', function() {
* Auto-repeat delays (in ms) for the corresponding slider values, from
* long to short. The values were chosen to provide a large range while giving
* several options near the defaults.
- * @type {!Array.<number>}
+ * @type {!Array<number>}
* @const
*/
var AUTO_REPEAT_DELAYS =
@@ -18,7 +18,7 @@ cr.define('options', function() {
* Auto-repeat intervals (in ms) for the corresponding slider values, from
* long to short. The slider itself is labeled "rate", the inverse of
* interval, and goes from slow (long interval) to fast (short interval).
- * @type {!Array.<number>}
+ * @type {!Array<number>}
* @const
*/
var AUTO_REPEAT_INTERVALS =
@@ -138,7 +138,7 @@ cr.define('options', function() {
* |value|.
* @param {string} id The slider's ID.
* @param {number} value The value to find.
- * @param {!Array.<number>} values The array to search.
+ * @param {!Array<number>} values The array to search.
* @private
*/
updateSliderFromValue_: function(id, value, values) {

Powered by Google App Engine
This is Rietveld 408576698