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

Side by Side Diff: ui/accessibility/platform/test_ax_node_wrapper.h

Issue 2964313002: Converts accNavigate over to the AXPlatformNode code. (Closed)
Patch Set: are -> is Created 3 years, 5 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 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 20 matching lines...) Expand all
31 // AXPlatformNodeDelegate. 31 // AXPlatformNodeDelegate.
32 const AXNodeData& GetData() const override; 32 const AXNodeData& GetData() const override;
33 const ui::AXTreeData& GetTreeData() const override; 33 const ui::AXTreeData& GetTreeData() const override;
34 gfx::NativeWindow GetTopLevelWidget() override; 34 gfx::NativeWindow GetTopLevelWidget() override;
35 gfx::NativeViewAccessible GetParent() override; 35 gfx::NativeViewAccessible GetParent() override;
36 int GetChildCount() override; 36 int GetChildCount() override;
37 gfx::NativeViewAccessible ChildAtIndex(int index) override; 37 gfx::NativeViewAccessible ChildAtIndex(int index) override;
38 gfx::Rect GetScreenBoundsRect() const override; 38 gfx::Rect GetScreenBoundsRect() const override;
39 gfx::NativeViewAccessible HitTestSync(int x, int y) override; 39 gfx::NativeViewAccessible HitTestSync(int x, int y) override;
40 gfx::NativeViewAccessible GetFocus() override; 40 gfx::NativeViewAccessible GetFocus() override;
41 ui::AXPlatformNode* GetFromNodeID(int32_t id) override;
41 gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override; 42 gfx::AcceleratedWidget GetTargetForNativeAccessibilityEvent() override;
42 bool AccessibilityPerformAction(const ui::AXActionData& data) override; 43 bool AccessibilityPerformAction(const ui::AXActionData& data) override;
43 bool ShouldIgnoreHoveredStateForTesting() override; 44 bool ShouldIgnoreHoveredStateForTesting() override;
44 45
45 private: 46 private:
46 TestAXNodeWrapper(AXTree* tree, AXNode* node); 47 TestAXNodeWrapper(AXTree* tree, AXNode* node);
47 48
48 TestAXNodeWrapper* HitTestSyncInternal(int x, int y); 49 TestAXNodeWrapper* HitTestSyncInternal(int x, int y);
49 50
50 AXTree* tree_; 51 AXTree* tree_;
51 AXNode* node_; 52 AXNode* node_;
52 AXPlatformNode* platform_node_; 53 AXPlatformNode* platform_node_;
53 }; 54 };
54 55
55 } // namespace ui 56 } // namespace ui
56 57
57 #endif // UI_ACCESSIBILITY_PLATFORM_TEST_AX_NODE_WRAPPER_H_ 58 #endif // UI_ACCESSIBILITY_PLATFORM_TEST_AX_NODE_WRAPPER_H_
OLDNEW
« no previous file with comments | « ui/accessibility/platform/ax_system_caret_win.cc ('k') | ui/accessibility/platform/test_ax_node_wrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698