| 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 #include "ui/gfx/transform.h" |
| 6 | 7 |
| 7 namespace ui { | 8 namespace ui { |
| 8 | 9 |
| 9 AXNode::AXNode(AXNode* parent, int32_t id, int32_t index_in_parent) | 10 AXNode::AXNode(AXNode* parent, int32_t id, int32_t index_in_parent) |
| 10 : index_in_parent_(index_in_parent), parent_(parent) { | 11 : index_in_parent_(index_in_parent), parent_(parent) { |
| 11 data_.id = id; | 12 data_.id = id; |
| 12 } | 13 } |
| 13 | 14 |
| 14 AXNode::~AXNode() { | 15 AXNode::~AXNode() { |
| 15 } | 16 } |
| 16 | 17 |
| 17 void AXNode::SetData(const AXNodeData& src) { | 18 void AXNode::SetData(const AXNodeData& src) { |
| 18 data_ = src; | 19 data_ = src; |
| 19 } | 20 } |
| 20 | 21 |
| 21 void AXNode::SetLocation(const gfx::RectF& new_location) { | 22 void AXNode::SetLocation(int offset_container_id, |
| 22 data_.location = new_location; | 23 const gfx::RectF& location, |
| 24 gfx::Transform* transform) { |
| 25 data_.offset_container_id = offset_container_id; |
| 26 data_.location = location; |
| 27 if (transform) |
| 28 data_.transform.reset(new gfx::Transform(*transform)); |
| 29 else |
| 30 data_.transform.reset(nullptr); |
| 23 } | 31 } |
| 24 | 32 |
| 25 void AXNode::SetIndexInParent(int index_in_parent) { | 33 void AXNode::SetIndexInParent(int index_in_parent) { |
| 26 index_in_parent_ = index_in_parent; | 34 index_in_parent_ = index_in_parent; |
| 27 } | 35 } |
| 28 | 36 |
| 29 void AXNode::SwapChildren(std::vector<AXNode*>& children) { | 37 void AXNode::SwapChildren(std::vector<AXNode*>& children) { |
| 30 children.swap(children_); | 38 children.swap(children_); |
| 31 } | 39 } |
| 32 | 40 |
| 33 void AXNode::Destroy() { | 41 void AXNode::Destroy() { |
| 34 delete this; | 42 delete this; |
| 35 } | 43 } |
| 36 | 44 |
| 37 bool AXNode::IsDescendantOf(AXNode* ancestor) { | 45 bool AXNode::IsDescendantOf(AXNode* ancestor) { |
| 38 if (this == ancestor) | 46 if (this == ancestor) |
| 39 return true; | 47 return true; |
| 40 else if (parent()) | 48 else if (parent()) |
| 41 return parent()->IsDescendantOf(ancestor); | 49 return parent()->IsDescendantOf(ancestor); |
| 42 | 50 |
| 43 return false; | 51 return false; |
| 44 } | 52 } |
| 45 | 53 |
| 46 } // namespace ui | 54 } // namespace ui |
| OLD | NEW |