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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/tabs_automation_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/tabs_automation_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/tabs_automation_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/tabs_automation_handler.js
index 836c23c51f43ff1f7145c023806a45bca479501f..74e57930e4e0dfd658fe76672a2f74eeef4706f2 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/tabs_automation_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/tabs_automation_handler.js
@@ -28,7 +28,7 @@ TabsAutomationHandler = function(tabRoot) {
// When the root is focused, simulate what happens on a load complete.
if (tabRoot.state.focused) {
this.onLoadComplete(
- new chrome.automation.AutomationEvent(EventType.loadComplete, tabRoot,
+ new ChromeVoxAutomationEvent(EventType.loadComplete, tabRoot,
'page'));
}
};
@@ -44,7 +44,7 @@ TabsAutomationHandler.prototype = {
/** @override */
onLoadComplete: function(evt) {
var focused = evt.target.find({state: {focused: true}}) || evt.target;
- this.onFocus(new chrome.automation.AutomationEvent(
+ this.onFocus(new ChromeVoxAutomationEvent(
EventType.focus, focused, evt.eventFrom));
}
};

Powered by Google App Engine
This is Rietveld 408576698