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

Unified Diff: content/public/browser/ax_event_notification_details.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
« no previous file with comments | « content/public/browser/ax_event_notification_details.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/ax_event_notification_details.cc
diff --git a/content/public/browser/ax_event_notification_details.cc b/content/public/browser/ax_event_notification_details.cc
index dfebb87c759c1a938833b375d627035e9090a03d..8944f57e11dac562564d3b5982b088795d2bb4eb 100644
--- a/content/public/browser/ax_event_notification_details.cc
+++ b/content/public/browser/ax_event_notification_details.cc
@@ -11,12 +11,15 @@ AXEventNotificationDetails::AXEventNotificationDetails(
const std::vector<ui::AXNodeData>& nodes,
ui::AXEvent event_type,
int id,
+ std::map<int32, int> node_to_browser_plugin_instance_id_map,
int process_id,
int routing_id)
: node_id_to_clear(node_id_to_clear),
nodes(nodes),
event_type(event_type),
id(id),
+ node_to_browser_plugin_instance_id_map(
+ node_to_browser_plugin_instance_id_map),
process_id(process_id),
routing_id(routing_id) {
}
« no previous file with comments | « content/public/browser/ax_event_notification_details.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698