Title: [229097] trunk/Tools
Revision
229097
Author
zandober...@gmail.com
Date
2018-02-28 10:25:05 -0800 (Wed, 28 Feb 2018)

Log Message

Unreviewed WPE fixup after r229080.

Add empty definitions for two AccessibilityUIElement methods,
avoiding undefined symbols in the WKTR injected bundle.

* WebKitTestRunner/InjectedBundle/wpe/AccessibilityUIElementWPE.cpp:
(WTR::AccessibilityUIElement::attributedStringForTextMarkerRange):
(WTR::AccessibilityUIElement::attributedStringForTextMarkerRangeWithOptions):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (229096 => 229097)


--- trunk/Tools/ChangeLog	2018-02-28 18:15:23 UTC (rev 229096)
+++ trunk/Tools/ChangeLog	2018-02-28 18:25:05 UTC (rev 229097)
@@ -1,3 +1,14 @@
+2018-02-28  Zan Dobersek  <zdober...@igalia.com>
+
+        Unreviewed WPE fixup after r229080.
+
+        Add empty definitions for two AccessibilityUIElement methods,
+        avoiding undefined symbols in the WKTR injected bundle.
+
+        * WebKitTestRunner/InjectedBundle/wpe/AccessibilityUIElementWPE.cpp:
+        (WTR::AccessibilityUIElement::attributedStringForTextMarkerRange):
+        (WTR::AccessibilityUIElement::attributedStringForTextMarkerRangeWithOptions):
+
 2018-02-27  Jonathan Bedard  <jbed...@apple.com>
 
         Remove concept of 'future'

Modified: trunk/Tools/WebKitTestRunner/InjectedBundle/wpe/AccessibilityUIElementWPE.cpp (229096 => 229097)


--- trunk/Tools/WebKitTestRunner/InjectedBundle/wpe/AccessibilityUIElementWPE.cpp	2018-02-28 18:15:23 UTC (rev 229096)
+++ trunk/Tools/WebKitTestRunner/InjectedBundle/wpe/AccessibilityUIElementWPE.cpp	2018-02-28 18:25:05 UTC (rev 229097)
@@ -843,6 +843,18 @@
     return nullptr;
 }
 
+JSRetainPtr<JSStringRef> AccessibilityUIElement::attributedStringForTextMarkerRange(AccessibilityTextMarkerRange*)
+{
+    notImplemented();
+    return nullptr;
+}
+
+JSRetainPtr<JSStringRef> AccessibilityUIElement::attributedStringForTextMarkerRangeWithOptions(AccessibilityTextMarkerRange*, bool)
+{
+    notImplemented();
+    return nullptr;
+}
+
 bool AccessibilityUIElement::attributedStringForTextMarkerRangeContainsAttribute(JSStringRef, AccessibilityTextMarkerRange*)
 {
     notImplemented();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to