Title: [265654] releases/WebKitGTK/webkit-2.30/Source/WebCore
Revision
265654
Author
[email protected]
Date
2020-08-13 23:38:57 -0700 (Thu, 13 Aug 2020)

Log Message

Merge r265564 - [PlayStation] Build fix for !ENABLE(ACCESSIBILITY) after r265514
https://bugs.webkit.org/show_bug.cgi?id=215426

AXObjectCache::getOrCreate(AccessibilityRole) changed names
in the above, but the short definition for
!ENABLE(ACCESSIBILITY) didn't update.

Unreviewed build fix.

* accessibility/AXObjectCache.h: Update name to match new name

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.30/Source/WebCore/ChangeLog (265653 => 265654)


--- releases/WebKitGTK/webkit-2.30/Source/WebCore/ChangeLog	2020-08-14 06:38:53 UTC (rev 265653)
+++ releases/WebKitGTK/webkit-2.30/Source/WebCore/ChangeLog	2020-08-14 06:38:57 UTC (rev 265654)
@@ -1,3 +1,16 @@
+2020-08-12  Stephan Szabo  <[email protected]>
+
+        [PlayStation] Build fix for !ENABLE(ACCESSIBILITY) after r265514
+        https://bugs.webkit.org/show_bug.cgi?id=215426
+
+        AXObjectCache::getOrCreate(AccessibilityRole) changed names
+        in the above, but the short definition for
+        !ENABLE(ACCESSIBILITY) didn't update.
+
+        Unreviewed build fix.
+
+        * accessibility/AXObjectCache.h: Update name to match new name
+
 2020-08-12  Wenson Hsieh  <[email protected]>
 
         Broken formatting in price table on yandex.ru after translating to English

Modified: releases/WebKitGTK/webkit-2.30/Source/WebCore/accessibility/AXObjectCache.h (265653 => 265654)


--- releases/WebKitGTK/webkit-2.30/Source/WebCore/accessibility/AXObjectCache.h	2020-08-14 06:38:53 UTC (rev 265653)
+++ releases/WebKitGTK/webkit-2.30/Source/WebCore/accessibility/AXObjectCache.h	2020-08-14 06:38:57 UTC (rev 265654)
@@ -546,7 +546,7 @@
 inline AccessibilityObject* AXObjectCache::get(Node*) { return nullptr; }
 inline AccessibilityObject* AXObjectCache::get(Widget*) { return nullptr; }
 inline AccessibilityObject* AXObjectCache::getOrCreate(RenderObject*) { return nullptr; }
-inline AccessibilityObject* AXObjectCache::getOrCreate(AccessibilityRole) { return nullptr; }
+inline AccessibilityObject* AXObjectCache::create(AccessibilityRole) { return nullptr; }
 inline AccessibilityObject* AXObjectCache::getOrCreate(Node*) { return nullptr; }
 inline AccessibilityObject* AXObjectCache::getOrCreate(Widget*) { return nullptr; }
 inline AXCoreObject* AXObjectCache::rootObject() { return nullptr; }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to