| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/chromevox_state.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/chromevox_state.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/chromevox_state.js
|
| index 7285ef089d9d3c38d78b31cdc1cc2c1f81b3a74a..02fdb490c1c046672218c7cc4e5acc65e491e231 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/chromevox_state.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/chromevox_state.js
|
| @@ -48,8 +48,15 @@ ChromeVoxState.backgroundTts;
|
|
|
| /**
|
| * @type {boolean}
|
| - */
|
| - ChromeVoxState.isReadingContinuously;
|
| + */
|
| +ChromeVoxState.isReadingContinuously;
|
| +
|
| +/**
|
| + * The node the user has requested to display on a refreshable braille
|
| + * display as an image, rather than as text.
|
| + * @type {chrome.automation.AutomationNode};
|
| + */
|
| +ChromeVoxState.nodeDisplayingBrailleImage;
|
|
|
| ChromeVoxState.prototype = {
|
| /** @type {ChromeVoxMode} */
|
| @@ -82,4 +89,6 @@ ChromeVoxState.prototype = {
|
| * @param {cursors.Range} newRange The new range.
|
| */
|
| setCurrentRange: goog.abstractMethod,
|
| +
|
| +
|
| };
|
|
|