OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/public/browser/ax_event_notification_details.h" | 5 #include "content/public/browser/ax_event_notification_details.h" |
6 | 6 |
7 namespace content { | 7 namespace content { |
8 | 8 |
9 AXEventNotificationDetails::AXEventNotificationDetails( | 9 AXEventNotificationDetails::AXEventNotificationDetails( |
10 const std::vector<ui::AXNodeData>& nodes, | 10 const std::vector<ui::AXNodeData>& nodes, |
11 ui::AXEvent event_type, | 11 ui::AXEvent event_type, |
12 int id, | 12 int id, |
| 13 int process_id, |
13 int routing_id) | 14 int routing_id) |
14 : nodes(nodes), event_type(event_type), id(id), routing_id(routing_id) {} | 15 : nodes(nodes), |
| 16 event_type(event_type), |
| 17 id(id), |
| 18 process_id(process_id), |
| 19 routing_id(routing_id) {} |
15 | 20 |
16 AXEventNotificationDetails::~AXEventNotificationDetails() {} | 21 AXEventNotificationDetails::~AXEventNotificationDetails() {} |
17 | 22 |
18 } // namespace content | 23 } // namespace content |
OLD | NEW |