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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/chromevox_state.js

Issue 2703663002: Display images in multiline Braille (Closed)
Patch Set: Use freeze / thaw Created 3 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/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,
+
+
};

Powered by Google App Engine
This is Rietveld 408576698