Chromium Code Reviews| 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) { }; |