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

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

Issue 2088453002: Implement the inert attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update generic test expectations 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 AXObject* inspected_ax_object, 67 AXObject* 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 AXObject& parent_ax_object, 73 AXObject& parent_ax_object,
74 AXObject* inspected_ax_object, 74 AXObject* 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 AXObject& child_ax_object,
79 AXObject* inspected_ax_object,
80 std::unique_ptr<protocol::Array<AXNode>>& nodes,
81 AXObjectCacheImpl&) const;
77 void AddChildren(AXObject&, 82 void AddChildren(AXObject&,
78 AXObject* inspected_ax_object, 83 AXObject* inspected_ax_object,
79 std::unique_ptr<protocol::Array<AXNodeId>>& child_ids, 84 std::unique_ptr<protocol::Array<AXNodeId>>& child_ids,
80 std::unique_ptr<protocol::Array<AXNode>>& nodes, 85 std::unique_ptr<protocol::Array<AXNode>>& nodes,
81 AXObjectCacheImpl&) const; 86 AXObjectCacheImpl&) const;
82 87
83 Member<Page> page_; 88 Member<Page> page_;
84 Member<InspectorDOMAgent> dom_agent_; 89 Member<InspectorDOMAgent> dom_agent_;
85 }; 90 };
86 91
87 } // namespace blink 92 } // namespace blink
88 93
89 #endif // InspectorAccessibilityAgent_h 94 #endif // InspectorAccessibilityAgent_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698