| OLD | NEW |
| 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 "modules/ModulesExport.h" | 10 #include "modules/ModulesExport.h" |
| 10 #include "wtf/PassOwnPtr.h" | 11 #include "wtf/PassOwnPtr.h" |
| 11 | 12 |
| 12 namespace blink { | 13 namespace blink { |
| 13 | 14 |
| 14 class InspectorDOMAgent; | 15 class InspectorDOMAgent; |
| 15 class Page; | 16 class Page; |
| 16 | 17 |
| 17 class MODULES_EXPORT InspectorAccessibilityAgent : public InspectorBaseAgent<pro
tocol::Accessibility::Metainfo> { | 18 class MODULES_EXPORT InspectorAccessibilityAgent : public InspectorBaseAgent<pro
tocol::Accessibility::Metainfo> { |
| 18 WTF_MAKE_NONCOPYABLE(InspectorAccessibilityAgent); | 19 WTF_MAKE_NONCOPYABLE(InspectorAccessibilityAgent); |
| 19 public: | 20 public: |
| 20 InspectorAccessibilityAgent(Page*, InspectorDOMAgent*); | 21 InspectorAccessibilityAgent(Page*, InspectorDOMAgent*); |
| 21 | 22 |
| 22 // Base agent methods. | 23 // Base agent methods. |
| 23 DECLARE_VIRTUAL_TRACE(); | 24 DECLARE_VIRTUAL_TRACE(); |
| 24 | 25 |
| 25 // Protocol methods. | 26 // Protocol methods. |
| 26 void getAXNode(ErrorString*, int nodeId, Maybe<protocol::Accessibility::AXNo
de>* accessibilityNode) override; | 27 void getAXNode(ErrorString*, int nodeId, Maybe<protocol::Accessibility::AXNo
de>* accessibilityNode) override; |
| 27 | 28 |
| 28 private: | 29 private: |
| 29 Member<Page> m_page; | 30 Member<Page> m_page; |
| 30 Member<InspectorDOMAgent> m_domAgent; | 31 Member<InspectorDOMAgent> m_domAgent; |
| 31 }; | 32 }; |
| 32 | 33 |
| 33 } // namespace blink | 34 } // namespace blink |
| 34 | 35 |
| 35 #endif // InspectorAccessibilityAgent_h | 36 #endif // InspectorAccessibilityAgent_h |
| OLD | NEW |