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

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

Issue 2584513006: Split out non-auto-generatable externs from auto generated ones. (Closed)
Patch Set: Use bound enum values. Created 4 years 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/find_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/find_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/find_handler.js
index 5aa0a7c1dfad5ce532f786677f369b9cd3935a10..a792988c7e11b80d5750641932e7225fa2e59979 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/find_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/find_handler.js
@@ -27,7 +27,8 @@ FindHandler.onModeChanged = function(newMode, oldMode) {
*/
FindHandler.init_ = function() {
chrome.automation.addTreeChangeObserver(
- 'textMarkerChanges', FindHandler.onTextMatch_);
+ chrome.automation.TreeChangeObserverFilter.TEXT_MARKER_CHANGES,
+ FindHandler.onTextMatch_);
};
/**

Powered by Google App Engine
This is Rietveld 408576698