Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/base_automation_handler.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/base_automation_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/base_automation_handler.js |
index 7888428991678cb7d80c899a50bdd7c2a0c6cd4a..e1d83abd35cd65883fbbabb6012656e99e056ae5 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/base_automation_handler.js |
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/base_automation_handler.js |
@@ -35,6 +35,7 @@ BaseAutomationHandler = function(node) { |
loadComplete: this.onLoadComplete, |
menuStart: this.onEventDefault, |
menuEnd: this.onEventDefault, |
+ scrollPositionChanged: this.onScrollPositionChanged, |
textChanged: this.onTextOrTextSelectionChanged, |
textSelectionChanged: this.onTextOrTextSelectionChanged, |
valueChanged: this.onValueChanged |
@@ -124,11 +125,20 @@ BaseAutomationHandler.prototype = { |
* @param {Object} evt |
*/ |
onLoadComplete: function(evt) {}, |
+ |
+ /** |
+ * @param {Object} evt |
+ */ |
onEventDefault: function(evt) {}, |
/** |
* @param {Object} evt |
*/ |
+ onScrollPositionChanged: function(evt) {}, |
+ |
+ /** |
+ * @param {Object} evt |
+ */ |
onTextOrTextSelectionChanged: function(evt) {}, |
/** |