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

Unified Diff: content/public/browser/ax_event_notification_details.h

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/public/browser/ax_event_notification_details.h
diff --git a/content/public/browser/ax_event_notification_details.h b/content/public/browser/ax_event_notification_details.h
index 0f4d8dc25152e8fbd49f6e046949e3eef4476c73..4173b8223b06cb9c2d09830cea572fd92afaae6c 100644
--- a/content/public/browser/ax_event_notification_details.h
+++ b/content/public/browser/ax_event_notification_details.h
@@ -17,12 +17,14 @@ namespace content {
// |WebContentsObserver::AccessibilityEventReceived| method.
struct CONTENT_EXPORT AXEventNotificationDetails {
public:
- AXEventNotificationDetails(int node_id_to_clear,
- const std::vector<ui::AXNodeData>& nodes,
- ui::AXEvent event_type,
- int id,
- int process_id,
- int routing_id);
+ AXEventNotificationDetails(
+ int node_id_to_clear,
+ 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);
~AXEventNotificationDetails();
@@ -30,6 +32,7 @@ struct CONTENT_EXPORT AXEventNotificationDetails {
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;
};
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/public/browser/ax_event_notification_details.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698