Index: chrome/browser/resources/chromeos/chromevox/common/editable_text_area_shadow.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/common/editable_text_area_shadow.js b/chrome/browser/resources/chromeos/chromevox/common/editable_text_area_shadow.js |
index 58940f2626afee4fbf69ce16ea72125c5e199563..bd381156c698bd8a5470c3aa09690bfe44265b72 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/common/editable_text_area_shadow.js |
+++ b/chrome/browser/resources/chromeos/chromevox/common/editable_text_area_shadow.js |
@@ -23,14 +23,14 @@ cvox.EditableTextAreaShadow = function() { |
/** |
* Map from line index to a data structure containing the start |
* and end index within the line. |
- * @type {Object.<number, {startIndex: number, endIndex: number}>} |
+ * @type {Object<number, {startIndex: number, endIndex: number}>} |
* @private |
*/ |
this.lines_ = {}; |
/** |
* Map from 0-based character index to 0-based line index. |
- * @type {Array.<number>} |
+ * @type {Array<number>} |
* @private |
*/ |
this.characterToLineMap_ = []; |
@@ -72,7 +72,7 @@ cvox.EditableTextAreaShadow.prototype.update = function(element) { |
/** |
* Map from line index to a data structure containing the start |
* and end index within the line. |
- * @type {Object.<number, {startIndex: number, endIndex: number}>} |
+ * @type {Object<number, {startIndex: number, endIndex: number}>} |
*/ |
var lines = {0: {startIndex: 0, endIndex: 0}}; |