| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
|
| index 347460328ff598acc735cf3b781d78a3e9c7ea16..f54bbe3c4a98974866aba8989211c5d512ad3615 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
|
| @@ -791,6 +791,10 @@ Background.prototype = {
|
| url += key + ':%20' + description[key] + '%0a';
|
| chrome.tabs.create({url: url});
|
| return false;
|
| + case 'toggleBrailleCaptions':
|
| + cvox.BrailleCaptionsBackground.setActive(
|
| + !cvox.BrailleCaptionsBackground.isEnabled());
|
| + return false;
|
| default:
|
| return true;
|
| }
|
|
|