| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_PLATFORM_TEST_AX_NODE_WRAPPER_H_ | 5 #ifndef UI_ACCESSIBILITY_PLATFORM_TEST_AX_NODE_WRAPPER_H_ |
| 6 #define UI_ACCESSIBILITY_PLATFORM_TEST_AX_NODE_WRAPPER_H_ | 6 #define UI_ACCESSIBILITY_PLATFORM_TEST_AX_NODE_WRAPPER_H_ |
| 7 | 7 |
| 8 #include "ui/accessibility/ax_node.h" | 8 #include "ui/accessibility/ax_node.h" |
| 9 #include "ui/accessibility/ax_tree.h" | 9 #include "ui/accessibility/ax_tree.h" |
| 10 #include "ui/accessibility/platform/ax_platform_node.h" | 10 #include "ui/accessibility/platform/ax_platform_node.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 int GetChildCount() override; | 35 int GetChildCount() override; |
| 36 gfx::NativeViewAccessible ChildAtIndex(int index) override; | 36 gfx::NativeViewAccessible ChildAtIndex(int index) override; |
| 37 gfx::Vector2d GetGlobalCoordinateOffset() override; | 37 gfx::Vector2d GetGlobalCoordinateOffset() override; |
| 38 gfx::NativeViewAccessible HitTestSync(int x, int y) override; | 38 gfx::NativeViewAccessible HitTestSync(int x, int y) override; |
| 39 gfx::NativeViewAccessible GetFocus() override; | 39 gfx::NativeViewAccessible GetFocus() override; |
| 40 gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override; | 40 gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override; |
| 41 void DoDefaultAction() override; | 41 void DoDefaultAction() override; |
| 42 bool SetStringValue(const base::string16& new_value, | 42 bool SetStringValue(const base::string16& new_value, |
| 43 bool clear_first) override; | 43 bool clear_first) override; |
| 44 bool CanSetStringValue() override; | 44 bool CanSetStringValue() override; |
| 45 bool SetFocused(bool focused) override; |
| 45 | 46 |
| 46 private: | 47 private: |
| 47 TestAXNodeWrapper(AXTree* tree, AXNode* node); | 48 TestAXNodeWrapper(AXTree* tree, AXNode* node); |
| 48 | 49 |
| 49 AXTree* tree_; | 50 AXTree* tree_; |
| 50 AXNode* node_; | 51 AXNode* node_; |
| 51 AXPlatformNode* platform_node_; | 52 AXPlatformNode* platform_node_; |
| 52 }; | 53 }; |
| 53 | 54 |
| 54 } // namespace ui | 55 } // namespace ui |
| 55 | 56 |
| 56 #endif // UI_ACCESSIBILITY_PLATFORM_TEST_AX_NODE_WRAPPER_H_ | 57 #endif // UI_ACCESSIBILITY_PLATFORM_TEST_AX_NODE_WRAPPER_H_ |
| OLD | NEW |