Changeset 195312 in webkit


Ignore:
Timestamp:
Jan 19, 2016 1:48:17 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Fixed compilation of AXObjectCache in case of !HAVE(ACCESSIBILITY).
https://bugs.webkit.org/show_bug.cgi?id=153243

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-19
Reviewed by Chris Fleizach.

No new tests needed.

  • accessibility/AXObjectCache.h:

(WebCore::AXObjectCache::AXObjectCache):
(WebCore::nodeHasRole): Deleted.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r195311 r195312  
     12016-01-19  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        Fixed compilation of AXObjectCache in case of !HAVE(ACCESSIBILITY).
     4        https://bugs.webkit.org/show_bug.cgi?id=153243
     5
     6        Reviewed by Chris Fleizach.
     7
     8        No new tests needed.
     9
     10        * accessibility/AXObjectCache.h:
     11        (WebCore::AXObjectCache::AXObjectCache):
     12        (WebCore::nodeHasRole): Deleted.
     13
    1142016-01-19  Antti Koivisto  <antti@apple.com>
    215
  • trunk/Source/WebCore/accessibility/AXObjectCache.h

    r195240 r195312  
    360360inline AccessibilityObjectInclusion AXComputedObjectAttributeCache::getIgnored(AXID) const { return DefaultBehavior; }
    361361inline void AXComputedObjectAttributeCache::setIgnored(AXID, AccessibilityObjectInclusion) { }
    362 inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(this, (Timer::TimerFiredFunction) nullptr) { }
     362inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(nullptr), m_passwordNotificationPostTimer(nullptr), m_liveRegionChangedPostTimer(nullptr) { }
    363363inline AXObjectCache::~AXObjectCache() { }
    364364inline AccessibilityObject* AXObjectCache::focusedUIElementForPage(const Page*) { return nullptr; }
     
    372372inline AccessibilityObject* AXObjectCache::rootObject() { return nullptr; }
    373373inline AccessibilityObject* AXObjectCache::rootObjectForFrame(Frame*) { return nullptr; }
    374 inline Element* AXObjectCache::rootAXEditableElement(Node*) { return nullptr; }
    375374inline bool nodeHasRole(Node*, const String&) { return false; }
    376375inline void AXObjectCache::startCachingComputedObjectAttributesUntilTreeMutates() { }
Note: See TracChangeset for help on using the changeset viewer.