| 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..143354826085c22baf4e5398713856d43fe1fced 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,18 @@ 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) { };
|
| +
|
| +
|
| +/**
|
| + * @return {!cvox.BrailleDisplayState} The current display state.
|
| + */
|
| +cvox.BrailleInterface.prototype.getDisplayState = function() { };
|
|
|