Changeset 211488 in webkit


Ignore:
Timestamp:
Feb 1, 2017 9:46:12 AM (7 years ago)
Author:
timothy@hatcher.name
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.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r211487 r211488  
     12017-02-01  Timothy Hatcher  <timothy@hatcher.name>
     2
     3        AXObjectCache is missing two functions at link time when !HAVE(ACCESSIBILITY)
     4        https://bugs.webkit.org/show_bug.cgi?id=167691
     5
     6        Reviewed by Chris Fleizach.
     7
     8        * accessibility/AXObjectCache.h:
     9        (WebCore::AXObjectCache::recomputeDeferredIsIgnored): Added empty stub.
     10        (WebCore::AXObjectCache::performDeferredIsIgnoredChange): Added empty stub.
     11
    1122017-02-01  Timothy Hatcher  <timothy@hatcher.name>
    213
  • trunk/Source/WebCore/accessibility/AXObjectCache.h

    • Property svn:executable set to *
    r211153 r211488  
    491491inline void AXObjectCache::handleAttributeChanged(const QualifiedName&, Element*) { }
    492492inline void AXObjectCache::recomputeIsIgnored(RenderObject*) { }
     493inline void AXObjectCache::recomputeDeferredIsIgnored(RenderBlock&) { }
     494inline void AXObjectCache::performDeferredIsIgnoredChange() { }
    493495inline void AXObjectCache::handleScrolledToAnchor(const Node*) { }
    494496inline void AXObjectCache::postTextStateChangeNotification(Node*, const AXTextStateChangeIntent&, const VisibleSelection&) { }
Note: See TracChangeset for help on using the changeset viewer.