| Index: chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js b/chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js
|
| index 05865f16d67a1789ed59fe672ca5237f5c5ec2f7..9c497115524a317297bb99f0ddd1a72b8c17f9d5 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/host/chrome/braille_background.js
|
| @@ -145,13 +145,13 @@ cvox.BrailleBackground.prototype.refreshTranslator = function() {
|
| var uncontractedTable = cvox.BrailleTable.getUncontracted(
|
| tables,
|
| table8Dot ? table8Dot : table);
|
| - this.liblouis_.getTranslator(table.fileName, goog.bind(
|
| + this.liblouis_.getTranslator(table.fileNames, goog.bind(
|
| function(translator) {
|
| if (uncontractedTable.id === table.id) {
|
| this.displayManager_.setTranslator(translator);
|
| this.inputHandler_.setTranslator(translator);
|
| } else {
|
| - this.liblouis_.getTranslator(uncontractedTable.fileName, goog.bind(
|
| + this.liblouis_.getTranslator(uncontractedTable.fileNames, goog.bind(
|
| function(uncontractedTranslator) {
|
| this.displayManager_.setTranslator(
|
| translator, uncontractedTranslator);
|
|
|