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

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

Issue 2988753002: Revert of Migrate BrowserAccessibility windows unique id handling to AXPlatformNodeWin. (Closed)
Patch Set: Created 3 years, 4 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_AX_PLATFORM_NODE_WIN_H_ 5 #ifndef UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_NODE_WIN_H_
6 #define UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_NODE_WIN_H_ 6 #define UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_NODE_WIN_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlcom.h> 9 #include <atlcom.h>
10 #include <oleacc.h> 10 #include <oleacc.h>
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 COM_INTERFACE_ENTRY(IAccessibleTable) 270 COM_INTERFACE_ENTRY(IAccessibleTable)
271 COM_INTERFACE_ENTRY(IAccessibleTable2) 271 COM_INTERFACE_ENTRY(IAccessibleTable2)
272 COM_INTERFACE_ENTRY(IAccessibleTableCell) 272 COM_INTERFACE_ENTRY(IAccessibleTableCell)
273 COM_INTERFACE_ENTRY(IServiceProvider) 273 COM_INTERFACE_ENTRY(IServiceProvider)
274 END_COM_MAP() 274 END_COM_MAP()
275 275
276 ~AXPlatformNodeWin() override; 276 ~AXPlatformNodeWin() override;
277 277
278 // Clear node's current relationships and set them to the default values. 278 // Clear node's current relationships and set them to the default values.
279 void CalculateRelationships(); 279 void CalculateRelationships();
280 static AXPlatformNode* GetFromUniqueId(int32_t unique_id);
281 int32_t unique_id() const { return unique_id_; }
282 280
283 // AXPlatformNode overrides. 281 // AXPlatformNode overrides.
284 gfx::NativeViewAccessible GetNativeViewAccessible() override; 282 gfx::NativeViewAccessible GetNativeViewAccessible() override;
285 void NotifyAccessibilityEvent(ui::AXEvent event_type) override; 283 void NotifyAccessibilityEvent(ui::AXEvent event_type) override;
286 284
287 // AXPlatformNodeBase overrides. 285 // AXPlatformNodeBase overrides.
288 void Destroy() override; 286 void Destroy() override;
289 int GetIndexInParent() override; 287 int GetIndexInParent() override;
290 288
291 // 289 //
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
645 int32_t ComputeIA2State(); 643 int32_t ComputeIA2State();
646 644
647 int32_t ComputeIA2Role(); 645 int32_t ComputeIA2Role();
648 646
649 std::vector<base::string16> ComputeIA2Attributes(); 647 std::vector<base::string16> ComputeIA2Attributes();
650 648
651 // AXPlatformNodeBase overrides. 649 // AXPlatformNodeBase overrides.
652 void Dispose() override; 650 void Dispose() override;
653 651
654 private: 652 private:
655 int32_t unique_id_;
656
657 int MSAAEvent(ui::AXEvent event); 653 int MSAAEvent(ui::AXEvent event);
658 bool IsWebAreaForPresentationalIframe(); 654 bool IsWebAreaForPresentationalIframe();
659 bool ShouldNodeHaveReadonlyStateByDefault(const AXNodeData& data) const; 655 bool ShouldNodeHaveReadonlyStateByDefault(const AXNodeData& data) const;
660 bool ShouldNodeHaveFocusableState(const AXNodeData& data) const; 656 bool ShouldNodeHaveFocusableState(const AXNodeData& data) const;
661 657
662 HRESULT GetStringAttributeAsBstr( 658 HRESULT GetStringAttributeAsBstr(
663 ui::AXStringAttribute attribute, 659 ui::AXStringAttribute attribute,
664 BSTR* value_bstr) const; 660 BSTR* value_bstr) const;
665 661
666 // Escapes characters in string attributes as required by the IA2 Spec. 662 // Escapes characters in string attributes as required by the IA2 Spec.
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 void RemoveTargetFromRelation(const base::string16& relation_type, 736 void RemoveTargetFromRelation(const base::string16& relation_type,
741 int target_id); 737 int target_id);
742 738
743 // Relationships between this node and other nodes. 739 // Relationships between this node and other nodes.
744 std::vector<ui::AXPlatformNodeRelationWin*> relations_; 740 std::vector<ui::AXPlatformNodeRelationWin*> relations_;
745 }; 741 };
746 742
747 } // namespace ui 743 } // namespace ui
748 744
749 #endif // UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_NODE_WIN_H_ 745 #endif // UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_NODE_WIN_H_
OLDNEW
« no previous file with comments | « ui/accessibility/platform/ax_platform_node.cc ('k') | ui/accessibility/platform/ax_platform_node_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698