OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "config.h" | |
6 | |
7 #include "modules/accessibility/InspectorAccessibilityAgent.h" | 5 #include "modules/accessibility/InspectorAccessibilityAgent.h" |
8 | 6 |
9 #include "core/HTMLNames.h" | 7 #include "core/HTMLNames.h" |
10 #include "core/dom/AXObjectCache.h" | 8 #include "core/dom/AXObjectCache.h" |
11 #include "core/dom/DOMNodeIds.h" | 9 #include "core/dom/DOMNodeIds.h" |
12 #include "core/dom/Element.h" | 10 #include "core/dom/Element.h" |
13 #include "core/inspector/InspectorDOMAgent.h" | 11 #include "core/inspector/InspectorDOMAgent.h" |
14 #include "core/inspector/InspectorState.h" | 12 #include "core/inspector/InspectorState.h" |
15 #include "core/inspector/InspectorStyleSheet.h" | 13 #include "core/inspector/InspectorStyleSheet.h" |
16 #include "core/page/Page.h" | 14 #include "core/page/Page.h" |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 accessibilityNode = buildObjectForNode(node, axObject, cacheImpl, properties
); | 391 accessibilityNode = buildObjectForNode(node, axObject, cacheImpl, properties
); |
394 } | 392 } |
395 | 393 |
396 DEFINE_TRACE(InspectorAccessibilityAgent) | 394 DEFINE_TRACE(InspectorAccessibilityAgent) |
397 { | 395 { |
398 visitor->trace(m_page); | 396 visitor->trace(m_page); |
399 InspectorBaseAgent::trace(visitor); | 397 InspectorBaseAgent::trace(visitor); |
400 } | 398 } |
401 | 399 |
402 } // namespace blink | 400 } // namespace blink |
OLD | NEW |