summaryrefslogtreecommitdiffstats
path: root/WebKitTools/DumpRenderTree/AccessibilityController.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebKitTools/DumpRenderTree/AccessibilityController.h')
-rw-r--r--WebKitTools/DumpRenderTree/AccessibilityController.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/WebKitTools/DumpRenderTree/AccessibilityController.h b/WebKitTools/DumpRenderTree/AccessibilityController.h
index 0af6613..a10e8be 100644
--- a/WebKitTools/DumpRenderTree/AccessibilityController.h
+++ b/WebKitTools/DumpRenderTree/AccessibilityController.h
@@ -27,6 +27,9 @@
#define AccessibilityController_h
#include <JavaScriptCore/JSObjectRef.h>
+#if PLATFORM(WIN)
+#include <windows.h>
+#endif
class AccessibilityUIElement;
@@ -41,8 +44,18 @@ public:
AccessibilityUIElement rootElement();
AccessibilityUIElement focusedElement();
+ void setLogFocusEvents(bool);
+ void setLogScrollingStartEvents(bool);
+
+ void resetToConsistentState();
+
private:
static JSClassRef getJSClass();
+
+#if PLATFORM(WIN)
+ HWINEVENTHOOK m_focusEventHook;
+ HWINEVENTHOOK m_scrollingStartEventHook;
+#endif
};
#endif // AccessibilityController_h