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

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

Issue 2703663002: Display images in multiline Braille (Closed)
Patch Set: Final feedback 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..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() + '.' +

Powered by Google App Engine
This is Rietveld 408576698