| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef UI_ACCESSIBILITY_AX_NODE_POSITION_H_ | 5 #ifndef UI_ACCESSIBILITY_AX_NODE_POSITION_H_ |
| 6 #define UI_ACCESSIBILITY_AX_NODE_POSITION_H_ | 6 #define UI_ACCESSIBILITY_AX_NODE_POSITION_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 13 #include "ui/accessibility/ax_export.h" | 13 #include "ui/accessibility/ax_export.h" |
| 14 #include "ui/accessibility/ax_node.h" | 14 #include "ui/accessibility/ax_node.h" |
| 15 #include "ui/accessibility/ax_position.h" | 15 #include "ui/accessibility/ax_position.h" |
| 16 #include "ui/accessibility/ax_tree.h" | 16 #include "ui/accessibility/ax_tree.h" |
| 17 | 17 |
| 18 namespace ui { | 18 namespace ui { |
| 19 | 19 |
| 20 class AX_EXPORT AXNodePosition : public AXPosition<AXNodePosition, AXNode> { | 20 class AX_EXPORT AXNodePosition : public AXPosition<AXNodePosition, AXNode> { |
| 21 public: | 21 public: |
| 22 AXNodePosition(); | 22 AXNodePosition(); |
| 23 ~AXNodePosition() override; | 23 ~AXNodePosition() override; |
| 24 | 24 |
| 25 AXPositionInstance Clone() const override; | 25 ConcreteInstance CloneConcrete() const override; |
| 26 | 26 |
| 27 base::string16 GetInnerText() const override; | 27 base::string16 GetInnerText() const override; |
| 28 | 28 |
| 29 static void SetTreeForTesting(AXTree* tree) { tree_ = tree; } | 29 static void SetTreeForTesting(AXTree* tree) { tree_ = tree; } |
| 30 | 30 |
| 31 protected: | 31 protected: |
| 32 AXNodePosition(const AXNodePosition& other) = default; | 32 AXNodePosition(const AXNodePosition& other) = default; |
| 33 void AnchorChild(int child_index, | 33 void AnchorChild(int child_index, |
| 34 int* tree_id, | 34 int* tree_id, |
| 35 int32_t* child_id) const override; | 35 int32_t* child_id) const override; |
| 36 int AnchorChildCount() const override; | 36 int AnchorChildCount() const override; |
| 37 int AnchorIndexInParent() const override; | 37 int AnchorIndexInParent() const override; |
| 38 void AnchorParent(int* tree_id, int32_t* parent_id) const override; | 38 void AnchorParent(int* tree_id, int32_t* parent_id) const override; |
| 39 AXNode* GetNodeInTree(int tree_id, int32_t node_id) const override; | 39 AXNode* GetNodeInTree(int tree_id, int32_t node_id) const override; |
| 40 int MaxTextOffset() const override; | 40 int MaxTextOffset() const override; |
| 41 bool IsInLineBreak() const override; | 41 bool IsInLineBreak() const override; |
| 42 std::vector<int32_t> GetWordStartOffsets() const override; | 42 std::vector<int32_t> GetWordStartOffsets() const override; |
| 43 std::vector<int32_t> GetWordEndOffsets() const override; | 43 std::vector<int32_t> GetWordEndOffsets() const override; |
| 44 int32_t GetNextOnLineID(int32_t node_id) const override; | 44 int32_t GetNextOnLineID(int32_t node_id) const override; |
| 45 int32_t GetPreviousOnLineID(int32_t node_id) const override; | 45 int32_t GetPreviousOnLineID(int32_t node_id) const override; |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 static AXTree* tree_; | 48 static AXTree* tree_; |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 } // namespace ui | 51 } // namespace ui |
| 52 | 52 |
| 53 #endif // UI_ACCESSIBILITY_AX_NODE_POSITION_H_ | 53 #endif // UI_ACCESSIBILITY_AX_NODE_POSITION_H_ |
| OLD | NEW |