| 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
|
|
|