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

Side by Side Diff: content/public/browser/ax_event_notification_details.cc

Issue 2080573003: Track all changed nodes during an update (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make suggested change. Created 4 years, 3 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 unified diff | Download patch
OLDNEW
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
OLDNEW
« no previous file with comments | « content/public/browser/ax_event_notification_details.h ('k') | content/public/common/common_param_traits_macros.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698