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

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

Issue 2401393003: Add multiline braille support. (Closed)
Patch Set: more tests Created 4 years, 1 month 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/externs.js
diff --git a/chrome/browser/resources/chromeos/chromevox/host/chrome/externs.js b/chrome/browser/resources/chromeos/chromevox/host/chrome/externs.js
index fbf813c3168fd8a2a0c104558185861e641d8397..d39d52df0e48124744673fe208ade32c87cb4f01 100644
--- a/chrome/browser/resources/chromeos/chromevox/host/chrome/externs.js
+++ b/chrome/browser/resources/chromeos/chromevox/host/chrome/externs.js
@@ -8,7 +8,8 @@
chrome.brailleDisplayPrivate = {};
/**
- * @param {function(!{available: boolean, textCellCount: (number|undefined)})}
+ * @param {function(!{available: boolean, textRowCount: (number|undefined),
+ * textColumnCount: (number|undefined)})}
* callback
*/
chrome.brailleDisplayPrivate.getDisplayState = function(callback) {};
@@ -25,8 +26,10 @@ chrome.brailleDisplayPrivate.onKeyEvent;
/**
* @param {ArrayBuffer} cells
+ * @param {number} columns
+ * @param {number} rows
*/
-chrome.brailleDisplayPrivate.writeDots = function(cells) {};
+chrome.brailleDisplayPrivate.writeDots = function(cells, columns, rows) {};
/**
* @const

Powered by Google App Engine
This is Rietveld 408576698