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.cc

Issue 203753002: Implement actions for Automation API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable test on Mac. Created 6 years, 9 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') | content/public/browser/render_widget_host.h » ('j') | 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 014adc0fd5d077e467a9515435e9b28e77d72a76..87ff4df41eef96197b6d108705ea21a5b4266901 100644
--- a/content/public/browser/ax_event_notification_details.cc
+++ b/content/public/browser/ax_event_notification_details.cc
@@ -10,8 +10,13 @@ AXEventNotificationDetails::AXEventNotificationDetails(
const std::vector<ui::AXNodeData>& nodes,
ui::AXEvent event_type,
int id,
+ int process_id,
int routing_id)
- : nodes(nodes), event_type(event_type), id(id), routing_id(routing_id) {}
+ : nodes(nodes),
+ event_type(event_type),
+ id(id),
+ process_id(process_id),
+ routing_id(routing_id) {}
AXEventNotificationDetails::~AXEventNotificationDetails() {}
« no previous file with comments | « content/public/browser/ax_event_notification_details.h ('k') | content/public/browser/render_widget_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698