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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/InspectorAccessibilityAgent.h

Issue 2902133002: Revert of "Implement the inert attribute" (Closed)
Patch Set: Created 3 years, 7 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 InspectorAccessibilityAgent_h 5 #ifndef InspectorAccessibilityAgent_h
6 #define InspectorAccessibilityAgent_h 6 #define InspectorAccessibilityAgent_h
7 7
8 #include "core/inspector/InspectorBaseAgent.h" 8 #include "core/inspector/InspectorBaseAgent.h"
9 #include "core/inspector/protocol/Accessibility.h" 9 #include "core/inspector/protocol/Accessibility.h"
10 #include "modules/ModulesExport.h" 10 #include "modules/ModulesExport.h"
(...skipping 29 matching lines...) Expand all
40 std::unique_ptr<AXNode> BuildObjectForIgnoredNode( 40 std::unique_ptr<AXNode> BuildObjectForIgnoredNode(
41 Node* dom_node, 41 Node* dom_node,
42 AXObjectImpl*, 42 AXObjectImpl*,
43 bool fetch_relatives, 43 bool fetch_relatives,
44 std::unique_ptr<protocol::Array<AXNode>>& nodes, 44 std::unique_ptr<protocol::Array<AXNode>>& nodes,
45 AXObjectCacheImpl&) const; 45 AXObjectCacheImpl&) const;
46 void PopulateDOMNodeAncestors(Node& inspected_dom_node, 46 void PopulateDOMNodeAncestors(Node& inspected_dom_node,
47 AXNode&, 47 AXNode&,
48 std::unique_ptr<protocol::Array<AXNode>>& nodes, 48 std::unique_ptr<protocol::Array<AXNode>>& nodes,
49 AXObjectCacheImpl&) const; 49 AXObjectCacheImpl&) const;
50 std::unique_ptr<AXNode> BuildProtocolAXObjectImpl( 50 std::unique_ptr<AXNode> BuildProtocolAXObject(
51 AXObjectImpl&, 51 AXObjectImpl&,
52 AXObjectImpl* inspected_ax_object, 52 AXObjectImpl* inspected_ax_object,
53 bool fetch_relatives, 53 bool fetch_relatives,
54 std::unique_ptr<protocol::Array<AXNode>>& nodes, 54 std::unique_ptr<protocol::Array<AXNode>>& nodes,
55 AXObjectCacheImpl&) const; 55 AXObjectCacheImpl&) const;
56 void FillCoreProperties(AXObjectImpl&, 56 void FillCoreProperties(AXObjectImpl&,
57 AXObjectImpl* inspected_ax_object, 57 AXObjectImpl* inspected_ax_object,
58 bool fetch_relatives, 58 bool fetch_relatives,
59 AXNode&, 59 AXNode&,
60 std::unique_ptr<protocol::Array<AXNode>>& nodes, 60 std::unique_ptr<protocol::Array<AXNode>>& nodes,
61 AXObjectCacheImpl&) const; 61 AXObjectCacheImpl&) const;
62 void AddAncestors(AXObjectImpl& first_ancestor, 62 void AddAncestors(AXObjectImpl& first_ancestor,
63 AXObjectImpl* inspected_ax_object, 63 AXObjectImpl* inspected_ax_object,
64 std::unique_ptr<protocol::Array<AXNode>>& nodes, 64 std::unique_ptr<protocol::Array<AXNode>>& nodes,
65 AXObjectCacheImpl&) const; 65 AXObjectCacheImpl&) const;
66 void PopulateRelatives(AXObjectImpl&, 66 void PopulateRelatives(AXObjectImpl&,
67 AXObjectImpl* inspected_ax_object, 67 AXObjectImpl* inspected_ax_object,
68 AXNode&, 68 AXNode&,
69 std::unique_ptr<protocol::Array<AXNode>>& nodes, 69 std::unique_ptr<protocol::Array<AXNode>>& nodes,
70 AXObjectCacheImpl&) const; 70 AXObjectCacheImpl&) const;
71 void AddSiblingsOfIgnored( 71 void AddSiblingsOfIgnored(
72 std::unique_ptr<protocol::Array<AXNodeId>>& child_ids, 72 std::unique_ptr<protocol::Array<AXNodeId>>& child_ids,
73 AXObjectImpl& parent_ax_object, 73 AXObjectImpl& parent_ax_object,
74 AXObjectImpl* inspected_ax_object, 74 AXObjectImpl* inspected_ax_object,
75 std::unique_ptr<protocol::Array<AXNode>>& nodes, 75 std::unique_ptr<protocol::Array<AXNode>>& nodes,
76 AXObjectCacheImpl&) const; 76 AXObjectCacheImpl&) const;
77 void addChild(std::unique_ptr<protocol::Array<AXNodeId>>& child_ids,
78 AXObjectImpl& child_ax_object,
79 AXObjectImpl* inspected_ax_object,
80 std::unique_ptr<protocol::Array<AXNode>>& nodes,
81 AXObjectCacheImpl&) const;
82 void AddChildren(AXObjectImpl&, 77 void AddChildren(AXObjectImpl&,
83 AXObjectImpl* inspected_ax_object, 78 AXObjectImpl* inspected_ax_object,
84 std::unique_ptr<protocol::Array<AXNodeId>>& child_ids, 79 std::unique_ptr<protocol::Array<AXNodeId>>& child_ids,
85 std::unique_ptr<protocol::Array<AXNode>>& nodes, 80 std::unique_ptr<protocol::Array<AXNode>>& nodes,
86 AXObjectCacheImpl&) const; 81 AXObjectCacheImpl&) const;
87 82
88 Member<Page> page_; 83 Member<Page> page_;
89 Member<InspectorDOMAgent> dom_agent_; 84 Member<InspectorDOMAgent> dom_agent_;
90 }; 85 };
91 86
92 } // namespace blink 87 } // namespace blink
93 88
94 #endif // InspectorAccessibilityAgent_h 89 #endif // InspectorAccessibilityAgent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698