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

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

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.h
diff --git a/content/public/browser/ax_event_notification_details.h b/content/public/browser/ax_event_notification_details.h
index 809178f3271ed494f885b08030c8d2018b73de3d..d85fe98fed8f625f865e84aaf2c93bc275550526 100644
--- a/content/public/browser/ax_event_notification_details.h
+++ b/content/public/browser/ax_event_notification_details.h
@@ -19,6 +19,7 @@ struct AXEventNotificationDetails {
AXEventNotificationDetails(const std::vector<ui::AXNodeData>& nodes,
ui::AXEvent event_type,
int id,
+ int process_id,
int routing_id);
~AXEventNotificationDetails();
@@ -26,6 +27,7 @@ struct AXEventNotificationDetails {
std::vector<ui::AXNodeData> nodes;
ui::AXEvent event_type;
int id;
+ int process_id;
int routing_id;
};

Powered by Google App Engine
This is Rietveld 408576698