Title: [211488] trunk/Source/WebCore
Revision
211488
Author
timo...@hatcher.name
Date
2017-02-01 09:46:12 -0800 (Wed, 01 Feb 2017)

Log Message

AXObjectCache is missing two functions at link time when !HAVE(ACCESSIBILITY)
https://bugs.webkit.org/show_bug.cgi?id=167691

Reviewed by Chris Fleizach.

* accessibility/AXObjectCache.h:
(WebCore::AXObjectCache::recomputeDeferredIsIgnored): Added empty stub.
(WebCore::AXObjectCache::performDeferredIsIgnoredChange): Added empty stub.

Modified Paths

Property Changed

Diff

Modified: trunk/Source/WebCore/ChangeLog (211487 => 211488)


--- trunk/Source/WebCore/ChangeLog	2017-02-01 17:37:03 UTC (rev 211487)
+++ trunk/Source/WebCore/ChangeLog	2017-02-01 17:46:12 UTC (rev 211488)
@@ -1,5 +1,16 @@
 2017-02-01  Timothy Hatcher  <timo...@hatcher.name>
 
+        AXObjectCache is missing two functions at link time when !HAVE(ACCESSIBILITY)
+        https://bugs.webkit.org/show_bug.cgi?id=167691
+
+        Reviewed by Chris Fleizach.
+
+        * accessibility/AXObjectCache.h:
+        (WebCore::AXObjectCache::recomputeDeferredIsIgnored): Added empty stub.
+        (WebCore::AXObjectCache::performDeferredIsIgnoredChange): Added empty stub.
+
+2017-02-01  Timothy Hatcher  <timo...@hatcher.name>
+
         HTMLMediaElement.h fails to build when ENABLE(MEDIA_CONTROLS_SCRIPT) is false
         https://bugs.webkit.org/show_bug.cgi?id=167689
 

Modified: trunk/Source/WebCore/accessibility/AXObjectCache.h (211487 => 211488)


--- trunk/Source/WebCore/accessibility/AXObjectCache.h	2017-02-01 17:37:03 UTC (rev 211487)
+++ trunk/Source/WebCore/accessibility/AXObjectCache.h	2017-02-01 17:46:12 UTC (rev 211488)
@@ -490,6 +490,8 @@
 inline void AXObjectCache::handleScrollbarUpdate(ScrollView*) { }
 inline void AXObjectCache::handleAttributeChanged(const QualifiedName&, Element*) { }
 inline void AXObjectCache::recomputeIsIgnored(RenderObject*) { }
+inline void AXObjectCache::recomputeDeferredIsIgnored(RenderBlock&) { }
+inline void AXObjectCache::performDeferredIsIgnoredChange() { }
 inline void AXObjectCache::handleScrolledToAnchor(const Node*) { }
 inline void AXObjectCache::postTextStateChangeNotification(Node*, const AXTextStateChangeIntent&, const VisibleSelection&) { }
 inline void AXObjectCache::postTextStateChangeNotification(Node*, AXTextEditType, const String&, const VisiblePosition&) { }
Property changes on: trunk/Source/WebCore/accessibility/AXObjectCache.h
___________________________________________________________________

Added: svn:executable

+* \ No newline at end of property
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to