⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 211153 in webkit


Ignore:
Timestamp:
Jan 25, 2017, 10:26:52 AM (10 years ago)
Author:
timothy@hatcher.name
Message:

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

  • accessibility/AXObjectCache.h:

(WebCore::AXObjectCache::AXObjectCache):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r211151 r211153  
     12017-01-25  Timothy Hatcher  <timothy@hatcher.name>
     2
     3        Fix the !HAVE(ACCESSIBILITY) build by properly instantiating AXObjectCache member timers.
     4
     5        * accessibility/AXObjectCache.h:
     6        (WebCore::AXObjectCache::AXObjectCache):
     7
    182017-01-25  Chris Dumez  <cdumez@apple.com>
    29
  • trunk/Source/WebCore/accessibility/AXObjectCache.h

    r210265 r211153  
    453453inline void AccessibilityReplacedText::postTextStateChangeNotification(AXObjectCache*, AXTextEditType, const String&, const VisibleSelection&) { }
    454454inline void AXComputedObjectAttributeCache::setIgnored(AXID, AccessibilityObjectInclusion) { }
    455 inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(nullptr), m_passwordNotificationPostTimer(nullptr), m_liveRegionChangedPostTimer(nullptr) { }
     455inline 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) { }
    456456inline AXObjectCache::~AXObjectCache() { }
    457457inline AccessibilityObject* AXObjectCache::focusedUIElementForPage(const Page*) { return nullptr; }
Note: See TracChangeset for help on using the changeset viewer.