summaryrefslogtreecommitdiffstats
path: root/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@nokia.com>2012-07-23 09:28:44 +0200
committerSimon Hausmann <simon.hausmann@nokia.com>2012-07-23 09:28:44 +0200
commit815f1ed417bd26fbe2abbdf20ac5d3423b30796c (patch)
tree923c9a9e2834ccab60f5caecfb8f0ac410c1dd9e /Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp
parentb4ad5d9d2b96baacd0180ead50de5195ca78af2d (diff)
Imported WebKit commit e65cbc5b6ac32627c797e7fc7f46eb7794410c92 (http://svn.webkit.org/repository/webkit/trunk@123308)
New snapshot with better configure tests
Diffstat (limited to 'Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp')
-rw-r--r--Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp18
1 files changed, 16 insertions, 2 deletions
diff --git a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp
index 440f952b2..2cd3049fe 100644
--- a/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp
+++ b/Tools/WebKitTestRunner/InjectedBundle/AccessibilityController.cpp
@@ -44,6 +44,14 @@ PassRefPtr<AccessibilityController> AccessibilityController::create()
}
AccessibilityController::AccessibilityController()
+#if PLATFORM(GTK)
+ : m_stateChangeListenerId(0)
+ , m_focusEventListenerId(0)
+ , m_activeDescendantChangedListenerId(0)
+ , m_childrenChangedListenerId(0)
+ , m_propertyChangedListenerId(0)
+ , m_visibleDataChangedListenerId(0)
+#endif
{
}
@@ -93,11 +101,17 @@ PassRefPtr<AccessibilityUIElement> AccessibilityController::elementAtPoint(int x
return uiElement->elementAtPoint(x, y);
}
-// Unsupported methods on various platforms. As they're implemented on other platforms this list should be modified.
+// Unsupported methods on various platforms.
+// As they're implemented on other platforms this list should be modified.
#if !PLATFORM(MAC)
bool AccessibilityController::addNotificationListener(JSValueRef) { return false; }
bool AccessibilityController::removeNotificationListener() { return false; }
#endif
-
+
+#if !PLATFORM(GTK)
+void AccessibilityController::logAccessibilityEvents() { }
+void AccessibilityController::resetToConsistentState() { }
+#endif
+
} // namespace WTR