| 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() {}
|
|
|
|
|