| Index: chrome/common/extensions/api/braille_display_private.idl
|
| diff --git a/chrome/common/extensions/api/braille_display_private.idl b/chrome/common/extensions/api/braille_display_private.idl
|
| index 0c7a3e69dc00fdbf5cb99c85ff770776dcfcb7f6..9e6d0c5fca6ce72f66c98433dd8454b778bd7228 100644
|
| --- a/chrome/common/extensions/api/braille_display_private.idl
|
| +++ b/chrome/common/extensions/api/braille_display_private.idl
|
| @@ -51,8 +51,10 @@ namespace brailleDisplayPrivate {
|
| dictionary DisplayState {
|
| // Whether a braille display is currently available.
|
| boolean available;
|
| - // Number of braille cells on the currently connected display.
|
| - long? textCellCount;
|
| + // Number of rows of braille cells on the currently connected display.
|
| + long? textRowCount;
|
| + // Number of columns of braille cells on the currently connected display.
|
| + long? textColumnCount;
|
| };
|
|
|
| callback DisplayStateCallback = void(DisplayState result);
|
| @@ -67,7 +69,7 @@ namespace brailleDisplayPrivate {
|
| // dot 1 and so on until bit 7 which corresponds to dot 8. If the number
|
| // of bytes in the buffer is not equal to the display size, the buffer
|
| // will either be clipped or padded with blank cells on the right.
|
| - static void writeDots(ArrayBuffer cells);
|
| + static void writeDots(ArrayBuffer cells, long rows, long columns);
|
| };
|
|
|
| interface Events {
|
|
|