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

Unified Diff: content/common/accessibility_messages.h

Issue 268543008: Cross-process iframe accessibility. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rewritten based on RFHI instead of RVHI Created 6 years, 4 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: content/common/accessibility_messages.h
diff --git a/content/common/accessibility_messages.h b/content/common/accessibility_messages.h
index adb528426895405ec0945f8da1c2753a6f58a550..ea33ffb484fba8942835e12b269327b525f247ee 100644
--- a/content/common/accessibility_messages.h
+++ b/content/common/accessibility_messages.h
@@ -51,10 +51,15 @@ IPC_STRUCT_TRAITS_BEGIN(ui::AXTreeUpdate)
IPC_STRUCT_TRAITS_MEMBER(nodes)
IPC_STRUCT_TRAITS_END()
+typedef std::map<int32, int> FrameIDMap;
+
IPC_STRUCT_BEGIN(AccessibilityHostMsg_EventParams)
// The tree update.
IPC_STRUCT_MEMBER(ui::AXTreeUpdate, update)
+ // Mapping from node id to frame routing id for an out-of-process iframe.
Charlie Reis 2014/08/21 19:23:27 Are these frame routing IDs from RenderFrames or R
dmazzoni 2014/08/25 06:49:36 Clarified. I think it's useful to have both - you
+ IPC_STRUCT_MEMBER(FrameIDMap, frame_routing_ids)
+
// Type of event.
IPC_STRUCT_MEMBER(ui::AXEvent, event_type)

Powered by Google App Engine
This is Rietveld 408576698