| 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 02c6aee93dd07b7cc345a8e68ee7d78228d75727..7b25b2acbe3164aa8e9b861602671190e6435b62 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
|
| @@ -114,11 +115,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) {},
|
|
|
| /**
|
|
|