| Index: chrome/browser/resources/chromeos/chromevox/host/chrome/braille.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/host/chrome/braille.js b/chrome/browser/resources/chromeos/chromevox/host/chrome/braille.js
|
| index 35a1d684cfa51e51bff6f2efea330021215704e1..9b145cb3a36701486108032eac93d11744dc8713 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/host/chrome/braille.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/host/chrome/braille.js
|
| @@ -72,6 +72,30 @@ cvox.ChromeBraille.prototype.write = function(params) {
|
| };
|
|
|
|
|
| +/** @override */
|
| +cvox.ChromeBraille.prototype.writeRawImage = function(imageDataUrl) {
|
| + // Do Nothing.
|
| +};
|
| +
|
| +
|
| +/** @override */
|
| +cvox.ChromeBraille.prototype.freeze = function() {
|
| + // Do Nothing.
|
| +};
|
| +
|
| +
|
| +/** @override */
|
| +cvox.ChromeBraille.prototype.thaw = function() {
|
| + // Do Nothing.
|
| +};
|
| +
|
| +
|
| +/** @override */
|
| +cvox.ChromeBraille.prototype.getDisplayState = function() {
|
| + return {available: false, textRowCount: 0, textColumnCount: 0};
|
| +};
|
| +
|
| +
|
| /** @private */
|
| cvox.ChromeBraille.prototype.updateLastContentId_ = function() {
|
| this.lastContentId_ = cvox.ExtensionBridge.uniqueId() + '.' +
|
|
|