Index: content/browser/renderer_host/render_view_host_impl.cc |
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc |
index 5917cc541c9aab47f42b59fed335c2c61a722de7..83bcc6c3c7f28cdfb781154a456b2ab3223ffe5c 100644 |
--- a/content/browser/renderer_host/render_view_host_impl.cc |
+++ b/content/browser/renderer_host/render_view_host_impl.cc |
@@ -1779,8 +1779,11 @@ void RenderViewHostImpl::OnAccessibilityEvents( |
std::vector<AXEventNotificationDetails> details; |
for (unsigned int i = 0; i < params.size(); ++i) { |
const AccessibilityHostMsg_EventParams& param = params[i]; |
- AXEventNotificationDetails detail( |
- param.nodes, param.event_type, param.id, GetRoutingID()); |
+ AXEventNotificationDetails detail(param.nodes, |
+ param.event_type, |
+ param.id, |
+ GetProcess()->GetID(), |
+ GetRoutingID()); |
details.push_back(detail); |
} |