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

Unified Diff: chrome/common/extensions/api/automation_internal.idl

Issue 1151523009: Forward accessibility events to the automation extension process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@step1
Patch Set: Created 5 years, 7 months 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/common/extensions/api/automation_internal.idl
diff --git a/chrome/common/extensions/api/automation_internal.idl b/chrome/common/extensions/api/automation_internal.idl
index 7b9063fe718cacb16b8b4a17dd55d990133e72fd..78b2163d8486bc595b6e4a06fe3c8b688b99da72 100644
--- a/chrome/common/extensions/api/automation_internal.idl
+++ b/chrome/common/extensions/api/automation_internal.idl
@@ -102,13 +102,16 @@ namespace automationInternal {
// Enable automation of the tab with the given id, or the active tab if no
// tab id is given, and retrieves accessibility tree id for use in
// future updates.
- static void enableTab(optional long tabId, EnableTabCallback callback);
+ static void enableTab(long routingId,
+ optional long tabId,
not at google - send to devlin 2015/06/02 23:59:24 This is going to get a bit confusing with the 2 in
dmazzoni 2015/06/04 20:07:39 Sure, done.
+ EnableTabCallback callback);
// Enable automation of the frame with the given tree id.
static void enableFrame(long tree_id);
// Enables desktop automation.
- static void enableDesktop(EnableDesktopCallback callback);
+ static void enableDesktop(long routingId,
+ EnableDesktopCallback callback);
// Performs an action on an automation node.
static void performAction(PerformActionRequiredParams args,

Powered by Google App Engine
This is Rietveld 408576698