Modified: releases/WebKitGTK/webkit-2.22/Source/WebCore/ChangeLog (236177 => 236178)
--- releases/WebKitGTK/webkit-2.22/Source/WebCore/ChangeLog 2018-09-19 12:34:15 UTC (rev 236177)
+++ releases/WebKitGTK/webkit-2.22/Source/WebCore/ChangeLog 2018-09-19 12:34:21 UTC (rev 236178)
@@ -1,3 +1,16 @@
+2018-09-07 Don Olmstead <[email protected]>
+
+ [AX] Fix compile error in AXObjectCache constructor when !HAVE(ACCESSIBILITY)
+ https://bugs.webkit.org/show_bug.cgi?id=189423
+ <rdar://problem/44231775>
+
+ Reviewed by Yusuke Suzuki.
+
+ No new tests. Compilation fix.
+
+ * accessibility/AXObjectCache.h:
+ (WebCore::AXObjectCache::AXObjectCache):
+
2018-09-05 Brent Fulgham <[email protected]>
The width of an empty or nullptr TextRun should be zero
Modified: releases/WebKitGTK/webkit-2.22/Source/WebCore/accessibility/AXObjectCache.h (236177 => 236178)
--- releases/WebKitGTK/webkit-2.22/Source/WebCore/accessibility/AXObjectCache.h 2018-09-19 12:34:15 UTC (rev 236177)
+++ releases/WebKitGTK/webkit-2.22/Source/WebCore/accessibility/AXObjectCache.h 2018-09-19 12:34:21 UTC (rev 236178)
@@ -480,7 +480,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(*this, &AXObjectCache::notificationPostTimerFired), m_passwordNotificationPostTimer(*this, &AXObjectCache::passwordNotificationPostTimerFired), m_liveRegionChangedPostTimer(*this, &AXObjectCache::liveRegionChangedNotificationPostTimerFired), m_focusModalNodeTimer(*this, &AXObjectCache::focusModalNodeTimerFired, m_performCacheUpdateTimer(*this, &AXObjectCache::performCacheUpdateTimerFired)) { }
+inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(*this, &AXObjectCache::notificationPostTimerFired), m_passwordNotificationPostTimer(*this, &AXObjectCache::passwordNotificationPostTimerFired), m_liveRegionChangedPostTimer(*this, &AXObjectCache::liveRegionChangedNotificationPostTimerFired), m_focusModalNodeTimer(*this, &AXObjectCache::focusModalNodeTimerFired), m_performCacheUpdateTimer(*this, &AXObjectCache::performCacheUpdateTimerFired) { }
inline AXObjectCache::~AXObjectCache() { }
inline AccessibilityObject* AXObjectCache::focusedUIElementForPage(const Page*) { return nullptr; }
inline AccessibilityObject* AXObjectCache::get(RenderObject*) { return nullptr; }