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 : event_type(ui::AX_EVENT_NONE), | 10 : event_type(ui::AX_EVENT_NONE), |
11 id(-1), | 11 id(-1), |
12 ax_tree_id(-1) { | 12 ax_tree_id(-1), |
13 } | 13 event_from(ui::AX_EVENT_FROM_NONE) {} |
14 | 14 |
15 AXEventNotificationDetails::AXEventNotificationDetails( | 15 AXEventNotificationDetails::AXEventNotificationDetails( |
16 const AXEventNotificationDetails& other) = default; | 16 const AXEventNotificationDetails& other) = default; |
17 | 17 |
18 AXEventNotificationDetails::~AXEventNotificationDetails() {} | 18 AXEventNotificationDetails::~AXEventNotificationDetails() {} |
19 | 19 |
20 AXLocationChangeNotificationDetails::AXLocationChangeNotificationDetails() | 20 AXLocationChangeNotificationDetails::AXLocationChangeNotificationDetails() |
21 : id(-1), | 21 : id(-1), |
22 ax_tree_id(-1) { | 22 ax_tree_id(-1) { |
23 } | 23 } |
24 | 24 |
25 AXLocationChangeNotificationDetails::AXLocationChangeNotificationDetails( | 25 AXLocationChangeNotificationDetails::AXLocationChangeNotificationDetails( |
26 const AXLocationChangeNotificationDetails& other) = default; | 26 const AXLocationChangeNotificationDetails& other) = default; |
27 | 27 |
28 AXLocationChangeNotificationDetails::~AXLocationChangeNotificationDetails() {} | 28 AXLocationChangeNotificationDetails::~AXLocationChangeNotificationDetails() {} |
29 | 29 |
30 | 30 |
31 } // namespace content | 31 } // namespace content |
OLD | NEW |