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

Unified Diff: chrome/browser/resources/chromeos/chromevox/braille/pan_strategy.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/braille/pan_strategy.js
diff --git a/chrome/browser/resources/chromeos/chromevox/braille/pan_strategy.js b/chrome/browser/resources/chromeos/chromevox/braille/pan_strategy.js
index e81db34e182c1d21482f561db344082d2374b438..9984b263efff43d017cd7e99aeb440cd876d7940 100644
--- a/chrome/browser/resources/chromeos/chromevox/braille/pan_strategy.js
+++ b/chrome/browser/resources/chromeos/chromevox/braille/pan_strategy.js
@@ -28,7 +28,7 @@ cvox.PanStrategy = function() {
/**
* Points before which it is desirable to break content if it doesn't fit
* on the display.
- * @type {!Array.<number>}
+ * @type {!Array<number>}
* @private
*/
this.breakPoints_ = [];
@@ -158,7 +158,7 @@ cvox.PanStrategy.prototype = {
* Overridden by subclasses to provide breakpoints given translated
* braille cell content.
* @param {!ArrayBuffer} content New display content.
- * @return {!Array.<number>} The points before which it is desirable to break
+ * @return {!Array<number>} The points before which it is desirable to break
* content if needed or the empty array if no points are more desirable
* than any position.
* @private

Powered by Google App Engine
This is Rietveld 408576698