Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/background.js

Issue 2238613002: Support output for Chrome's native find in ChromeVox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@text_markers
Patch Set: Don't forget to bit shift in SendTreeChanges (checking against cached overall tree filter). Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698