Title: [195312] trunk/Source/WebCore
Revision
195312
Author
[email protected]
Date
2016-01-19 13:48:17 -0800 (Tue, 19 Jan 2016)

Log Message

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

Patch by Konstantin Tokarev <[email protected]> on 2016-01-19
Reviewed by Chris Fleizach.

No new tests needed.

* accessibility/AXObjectCache.h:
(WebCore::AXObjectCache::AXObjectCache):
(WebCore::nodeHasRole): Deleted.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (195311 => 195312)


--- trunk/Source/WebCore/ChangeLog	2016-01-19 21:26:35 UTC (rev 195311)
+++ trunk/Source/WebCore/ChangeLog	2016-01-19 21:48:17 UTC (rev 195312)
@@ -1,3 +1,16 @@
+2016-01-19  Konstantin Tokarev  <[email protected]>
+
+        Fixed compilation of AXObjectCache in case of !HAVE(ACCESSIBILITY).
+        https://bugs.webkit.org/show_bug.cgi?id=153243
+
+        Reviewed by Chris Fleizach.
+
+        No new tests needed.
+
+        * accessibility/AXObjectCache.h:
+        (WebCore::AXObjectCache::AXObjectCache):
+        (WebCore::nodeHasRole): Deleted.
+
 2016-01-19  Antti Koivisto  <[email protected]>
 
         Use references in SelectorChecker

Modified: trunk/Source/WebCore/accessibility/AXObjectCache.h (195311 => 195312)


--- trunk/Source/WebCore/accessibility/AXObjectCache.h	2016-01-19 21:26:35 UTC (rev 195311)
+++ trunk/Source/WebCore/accessibility/AXObjectCache.h	2016-01-19 21:48:17 UTC (rev 195312)
@@ -359,7 +359,7 @@
 #if !HAVE(ACCESSIBILITY)
 inline AccessibilityObjectInclusion AXComputedObjectAttributeCache::getIgnored(AXID) const { return DefaultBehavior; }
 inline void AXComputedObjectAttributeCache::setIgnored(AXID, AccessibilityObjectInclusion) { }
-inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(this, (Timer::TimerFiredFunction) nullptr) { }
+inline AXObjectCache::AXObjectCache(Document& document) : m_document(document), m_notificationPostTimer(nullptr), m_passwordNotificationPostTimer(nullptr), m_liveRegionChangedPostTimer(nullptr) { }
 inline AXObjectCache::~AXObjectCache() { }
 inline AccessibilityObject* AXObjectCache::focusedUIElementForPage(const Page*) { return nullptr; }
 inline AccessibilityObject* AXObjectCache::get(RenderObject*) { return nullptr; }
@@ -371,7 +371,6 @@
 inline AccessibilityObject* AXObjectCache::getOrCreate(Widget*) { return nullptr; }
 inline AccessibilityObject* AXObjectCache::rootObject() { return nullptr; }
 inline AccessibilityObject* AXObjectCache::rootObjectForFrame(Frame*) { return nullptr; }
-inline Element* AXObjectCache::rootAXEditableElement(Node*) { return nullptr; }
 inline bool nodeHasRole(Node*, const String&) { return false; }
 inline void AXObjectCache::startCachingComputedObjectAttributesUntilTreeMutates() { }
 inline void AXObjectCache::stopCachingComputedObjectAttributes() { }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to