Changeset 211153 in webkit
- Timestamp:
- Jan 25, 2017, 10:26:52 AM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
accessibility/AXObjectCache.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r211151 r211153 1 2017-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 1 8 2017-01-25 Chris Dumez <cdumez@apple.com> 2 9 -
trunk/Source/WebCore/accessibility/AXObjectCache.h
r210265 r211153 453 453 inline void AccessibilityReplacedText::postTextStateChangeNotification(AXObjectCache*, AXTextEditType, const String&, const VisibleSelection&) { } 454 454 inline void AXComputedObjectAttributeCache::setIgnored(AXID, AccessibilityObjectInclusion) { } 455 inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer( nullptr), m_passwordNotificationPostTimer(nullptr), m_liveRegionChangedPostTimer(nullptr) { }455 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) { } 456 456 inline AXObjectCache::~AXObjectCache() { } 457 457 inline AccessibilityObject* AXObjectCache::focusedUIElementForPage(const Page*) { return nullptr; }
Note:
See TracChangeset
for help on using the changeset viewer.