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

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

Issue 2703663002: Display images in multiline Braille (Closed)
Patch Set: Fix test Created 3 years, 10 months 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/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..0d5adb0ff1a0a8848e312fcd1538965d0fd90f8d 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/chrome/braille.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/chrome/braille.js
@@ -72,6 +72,18 @@ cvox.ChromeBraille.prototype.write = function(params) {
};
+/** @override */
+cvox.ChromeBraille.prototype.writeRawImage = function(imageDataUrl) {
+ // 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() + '.' +

Powered by Google App Engine
This is Rietveld 408576698