| 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 55e00dcea05e2cc5f378b42a6756393c303979a5..cab9cbb7c6eb9d93c6ad400dc55d90a2b52dfd37 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js
|
| @@ -14,6 +14,7 @@ goog.require('AutomationUtil');
|
| goog.require('BackgroundKeyboardHandler');
|
| goog.require('ChromeVoxState');
|
| goog.require('CommandHandler');
|
| +goog.require('FindHandler');
|
| goog.require('LiveRegions');
|
| goog.require('NextEarcons');
|
| goog.require('Notifications');
|
| @@ -234,6 +235,7 @@ Background.prototype = {
|
| onModeChanged_: function(newMode, oldMode) {
|
| this.keyboardHandler_.onModeChanged(newMode, oldMode);
|
| CommandHandler.onModeChanged(newMode, oldMode);
|
| + FindHandler.onModeChanged(newMode, oldMode);
|
| Notifications.onModeChange(newMode, oldMode);
|
|
|
| if (newMode == ChromeVoxMode.CLASSIC)
|
|
|