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

Unified Diff: content/browser/frame_host/render_frame_host_impl.cc

Issue 1232643003: Give automation API access to browser plugin objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error Created 5 years, 5 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/browser/frame_host/render_frame_host_impl.cc
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
index 22a300ab739df195913e2c7693fd422a3477a12d..9c0bb6796cd920741be86d1d135b90007834691c 100644
--- a/content/browser/frame_host/render_frame_host_impl.cc
+++ b/content/browser/frame_host/render_frame_host_impl.cc
@@ -1374,12 +1374,14 @@ void RenderFrameHostImpl::OnAccessibilityEvents(
details.reserve(params.size());
for (size_t i = 0; i < params.size(); ++i) {
const AccessibilityHostMsg_EventParams& param = params[i];
- AXEventNotificationDetails detail(param.update.node_id_to_clear,
- param.update.nodes,
- param.event_type,
- param.id,
- GetProcess()->GetID(),
- routing_id_);
+ AXEventNotificationDetails detail(
+ param.update.node_id_to_clear,
+ param.update.nodes,
+ param.event_type,
+ param.id,
+ param.node_to_browser_plugin_instance_id_map,
+ GetProcess()->GetID(),
+ routing_id_);
details.push_back(detail);
}

Powered by Google App Engine
This is Rietveld 408576698