| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
|
| index 1f2e930091e873d7701b2a24edceb2643b19e463..2c02cd35b07b552f4066a47f2ded8f65a30d586d 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js
|
| @@ -48,7 +48,7 @@ Output = function() {
|
| this.buffer_ = new cvox.Spannable();
|
| /** @type {!cvox.Spannable} */
|
| this.brailleBuffer_ = new cvox.Spannable();
|
| - /** @type {!Array.<Object>} */
|
| + /** @type {!Array<Object>} */
|
| this.locations_ = [];
|
| /** @type {function()} */
|
| this.speechStartCallback_;
|
| @@ -65,7 +65,7 @@ Output = function() {
|
|
|
| /**
|
| * Speech properties to apply to the entire output.
|
| - * @type {!Object.<string, *>}
|
| + * @type {!Object<string, *>}
|
| */
|
| this.speechProperties_ = {};
|
| };
|
| @@ -78,7 +78,7 @@ Output.SPACE = ' ';
|
|
|
| /**
|
| * Rules specifying format of AutomationNodes for output.
|
| - * @type {!Object.<string, Object.<string, Object.<string, string>>>}
|
| + * @type {!Object<string, Object<string, Object<string, string>>>}
|
| */
|
| Output.RULES = {
|
| navigate: {
|
| @@ -194,7 +194,7 @@ Output.RULES = {
|
|
|
| /**
|
| * Alias equivalent attributes.
|
| - * @type {!Object.<string, string>}
|
| + * @type {!Object<string, string>}
|
| */
|
| Output.ATTRIBUTE_ALIAS = {
|
| name: 'value',
|
|
|