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

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

Issue 2713453002: Revert of Correctly compute parent of AXMenuListOption (Closed)
Patch Set: Created 3 years, 10 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 AXObject* inspectedAXObject, 67 AXObject* inspectedAXObject,
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>>& childIds, 72 std::unique_ptr<protocol::Array<AXNodeId>>& childIds,
73 AXObject& parentAXObject, 73 AXObject& parentAXObject,
74 AXObject* inspectedAXObject, 74 AXObject* inspectedAXObject,
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>>& childIds,
78 AXObject& childAXObject,
79 AXObject* inspectedAXObject,
80 std::unique_ptr<protocol::Array<AXNode>>& nodes,
81 AXObjectCacheImpl&) const;
82 void addChildren(AXObject&, 77 void addChildren(AXObject&,
83 AXObject* inspectedAXObject, 78 AXObject* inspectedAXObject,
84 std::unique_ptr<protocol::Array<AXNodeId>>& childIds, 79 std::unique_ptr<protocol::Array<AXNodeId>>& childIds,
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> m_page; 83 Member<Page> m_page;
89 Member<InspectorDOMAgent> m_domAgent; 84 Member<InspectorDOMAgent> m_domAgent;
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