OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "ui/accessibility/ax_node.h" | 5 #include "ui/accessibility/ax_node.h" |
6 | 6 |
7 namespace ui { | 7 namespace ui { |
8 | 8 |
9 AXNode::AXNode(AXNode* parent, int32 id, int32 index_in_parent) | 9 AXNode::AXNode(AXNode* parent, int32_t id, int32_t index_in_parent) |
10 : index_in_parent_(index_in_parent), | 10 : index_in_parent_(index_in_parent), parent_(parent) { |
11 parent_(parent) { | |
12 data_.id = id; | 11 data_.id = id; |
13 } | 12 } |
14 | 13 |
15 AXNode::~AXNode() { | 14 AXNode::~AXNode() { |
16 } | 15 } |
17 | 16 |
18 void AXNode::SetData(const AXNodeData& src) { | 17 void AXNode::SetData(const AXNodeData& src) { |
19 data_ = src; | 18 data_ = src; |
20 } | 19 } |
21 | 20 |
(...skipping 16 matching lines...) Expand all Loading... |
38 bool AXNode::IsDescendantOf(AXNode* ancestor) { | 37 bool AXNode::IsDescendantOf(AXNode* ancestor) { |
39 if (this == ancestor) | 38 if (this == ancestor) |
40 return true; | 39 return true; |
41 else if (parent()) | 40 else if (parent()) |
42 return parent()->IsDescendantOf(ancestor); | 41 return parent()->IsDescendantOf(ancestor); |
43 | 42 |
44 return false; | 43 return false; |
45 } | 44 } |
46 | 45 |
47 } // namespace ui | 46 } // namespace ui |
OLD | NEW |