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

Unified Diff: chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.js

Issue 2703663002: Display images in multiline Braille (Closed)
Patch Set: Final feedback 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/host/interface/braille_interface.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.js b/chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.js
index 9ecba7216a7b4f262a5ac4ac38249c5366f9dc59..754a961684d281e37a404d3c11f14f4aae3bb103 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/interface/braille_interface.js
@@ -27,3 +27,29 @@ cvox.BrailleInterface = function() { };
*/
cvox.BrailleInterface.prototype.write =
function(params) { };
+
+/**
+ * Takes an image in the form of a data url and outputs it to a Braille
+ * display.
+ * @param {!string} imageDataUrl The image to output, in the form of a
+ * dataUrl.
+ */
+cvox.BrailleInterface.prototype.writeRawImage =
+ function(imageDataUrl) { };
+
+/**
+ * Freeze whatever is on the braille display until the next call to thaw().
+ */
+cvox.BrailleInterface.prototype.freeze = function() { };
+
+
+/**
+ * Un-freeze the braille display so that it can be written to again.
+ */
+cvox.BrailleInterface.prototype.thaw = function() { };
+
+
+/**
+ * @return {!cvox.BrailleDisplayState} The current display state.
+ */
+cvox.BrailleInterface.prototype.getDisplayState = function() { };

Powered by Google App Engine
This is Rietveld 408576698