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

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

Issue 1458723002: Finish implementing ChromeVox Next active indicator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@load_key_map
Patch Set: Made test expectations approximate Created 5 years, 1 month 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/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) {},
/**

Powered by Google App Engine
This is Rietveld 408576698