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

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: Remove repricated API. 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
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() {}

Powered by Google App Engine
This is Rietveld 408576698