| 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 int node_id_to_clear, | 10 int node_id_to_clear, |
| 11 const std::vector<ui::AXNodeData>& nodes, | 11 const std::vector<ui::AXNodeData>& nodes, |
| 12 ui::AXEvent event_type, | 12 ui::AXEvent event_type, |
| 13 int id, | 13 int id, |
| 14 std::map<int32, int> node_to_browser_plugin_instance_id_map, |
| 14 int process_id, | 15 int process_id, |
| 15 int routing_id) | 16 int routing_id) |
| 16 : node_id_to_clear(node_id_to_clear), | 17 : node_id_to_clear(node_id_to_clear), |
| 17 nodes(nodes), | 18 nodes(nodes), |
| 18 event_type(event_type), | 19 event_type(event_type), |
| 19 id(id), | 20 id(id), |
| 21 node_to_browser_plugin_instance_id_map( |
| 22 node_to_browser_plugin_instance_id_map), |
| 20 process_id(process_id), | 23 process_id(process_id), |
| 21 routing_id(routing_id) { | 24 routing_id(routing_id) { |
| 22 } | 25 } |
| 23 | 26 |
| 24 AXEventNotificationDetails::~AXEventNotificationDetails() {} | 27 AXEventNotificationDetails::~AXEventNotificationDetails() {} |
| 25 | 28 |
| 26 } // namespace content | 29 } // namespace content |
| OLD | NEW |