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

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

Issue 2544203004: Display images in multiline Braille
Patch Set: Minor Nits, added TODO comments Created 4 years 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..7f17ecfa68f2fe9d83881c7adfc8fc53a91d10f5 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,12 @@ 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) { };

Powered by Google App Engine
This is Rietveld 408576698