| 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 039fa133982be771112744c4c53aefaf26f2f40d..c99559deebf36e9013d829f8d412f0828b67663d 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -1750,8 +1750,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);
|
| }
|
|
|
|
|