Title: [211153] trunk/Source/WebCore
Revision
211153
Author
[email protected]
Date
2017-01-25 10:26:52 -0800 (Wed, 25 Jan 2017)

Log Message

Fix the !HAVE(ACCESSIBILITY) build by properly instantiating AXObjectCache member timers.

* accessibility/AXObjectCache.h:
(WebCore::AXObjectCache::AXObjectCache):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (211152 => 211153)


--- trunk/Source/WebCore/ChangeLog	2017-01-25 18:00:49 UTC (rev 211152)
+++ trunk/Source/WebCore/ChangeLog	2017-01-25 18:26:52 UTC (rev 211153)
@@ -1,3 +1,10 @@
+2017-01-25  Timothy Hatcher  <[email protected]>
+
+        Fix the !HAVE(ACCESSIBILITY) build by properly instantiating AXObjectCache member timers.
+
+        * accessibility/AXObjectCache.h:
+        (WebCore::AXObjectCache::AXObjectCache):
+
 2017-01-25  Chris Dumez  <[email protected]>
 
         Measure how common it is for content to deal with WebGL context loss

Modified: trunk/Source/WebCore/accessibility/AXObjectCache.h (211152 => 211153)


--- trunk/Source/WebCore/accessibility/AXObjectCache.h	2017-01-25 18:00:49 UTC (rev 211152)
+++ trunk/Source/WebCore/accessibility/AXObjectCache.h	2017-01-25 18:26:52 UTC (rev 211153)
@@ -452,7 +452,7 @@
 inline AccessibilityReplacedText::AccessibilityReplacedText(const VisibleSelection&) { }
 inline void AccessibilityReplacedText::postTextStateChangeNotification(AXObjectCache*, AXTextEditType, const String&, const VisibleSelection&) { }
 inline void AXComputedObjectAttributeCache::setIgnored(AXID, AccessibilityObjectInclusion) { }
-inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(nullptr), m_passwordNotificationPostTimer(nullptr), m_liveRegionChangedPostTimer(nullptr) { }
+inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(*this, &AXObjectCache::notificationPostTimerFired), m_passwordNotificationPostTimer(*this, &AXObjectCache::passwordNotificationPostTimerFired), m_liveRegionChangedPostTimer(*this, &AXObjectCache::liveRegionChangedNotificationPostTimerFired), m_focusAriaModalNodeTimer(*this, &AXObjectCache::focusAriaModalNodeTimerFired) { }
 inline AXObjectCache::~AXObjectCache() { }
 inline AccessibilityObject* AXObjectCache::focusedUIElementForPage(const Page*) { return nullptr; }
 inline AccessibilityObject* AXObjectCache::get(RenderObject*) { return nullptr; }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to