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

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

Issue 2544203004: Display images in multiline Braille
Patch Set: set upstream to correct branch 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..e5e7add17d3a7fd21798ff9eb0a2f9924d49f50f 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 in a dataUrl in the form of a PNG and outputs it into a Braille
dmazzoni 2016/12/05 17:29:41 I'd say, takes an image (PNG is irrelevant) in the
ultimatedbz 2016/12/05 19:32:01 Done.
+ * display for output.
+ * @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