Title: [256294] trunk/Source
Revision
256294
Author
cfleiz...@apple.com
Date
2020-02-11 00:10:59 -0800 (Tue, 11 Feb 2020)

Log Message

AX: Unable to build webkit open source - build errors related to AXClientType
https://bugs.webkit.org/show_bug.cgi?id=207524
<rdar://problem/59279722>

Reviewed by Mark Lam.

Source/WebCore/PAL:

* pal/spi/mac/HIServicesSPI.h:

Source/WebKit:

* Platform/spi/mac/ApplicationServicesSPI.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/PAL/ChangeLog (256293 => 256294)


--- trunk/Source/WebCore/PAL/ChangeLog	2020-02-11 06:26:49 UTC (rev 256293)
+++ trunk/Source/WebCore/PAL/ChangeLog	2020-02-11 08:10:59 UTC (rev 256294)
@@ -1,3 +1,13 @@
+2020-02-11  chris fleizach  <cfleiz...@apple.com>
+
+        AX: Unable to build webkit open source - build errors related to AXClientType
+        https://bugs.webkit.org/show_bug.cgi?id=207524
+        <rdar://problem/59279722>
+
+        Reviewed by Mark Lam.
+
+        * pal/spi/mac/HIServicesSPI.h:
+
 2020-02-10  Truitt Savell  <tsav...@apple.com>
 
         Unreviewed, rolling out r256091.

Modified: trunk/Source/WebCore/PAL/pal/spi/mac/HIServicesSPI.h (256293 => 256294)


--- trunk/Source/WebCore/PAL/pal/spi/mac/HIServicesSPI.h	2020-02-11 06:26:49 UTC (rev 256293)
+++ trunk/Source/WebCore/PAL/pal/spi/mac/HIServicesSPI.h	2020-02-11 08:10:59 UTC (rev 256294)
@@ -126,4 +126,26 @@
 bool _AXUIElementRequestServicedBySecondaryAXThread(void);
 OSStatus SetApplicationIsDaemon(Boolean);
 
+#if ENABLE(ACCESSIBILITY_ISOLATED_TREE)
+AXError _AXUIElementUseSecondaryAXThread(bool enabled);
+#endif
+
+#if HAVE(AX_CLIENT_TYPE)
+typedef CF_ENUM(int32_t, AXClientType)
+{
+    kAXClientTypeNoActiveRequestFound  = 0,
+    kAXClientTypeUnknown,
+    kAXClientTypeRaft,
+    kAXClientTypeXCUITest,
+    kAXClientTypeXCTest,
+    kAXClientTypeScripter2,
+    kAXClientTypeSystemEvents,
+    kAXClientTypeVoiceOver,
+    kAXClientTypeAssistiveControl,
+    kAXClientTypeFullKeyboardAccess,
+    kAXClientTypeDictation,
+};
+AXClientType _AXGetClientForCurrentRequestUntrusted(void);
+#endif // HAVE(AX_CLIENT_TYPE)
+
 WTF_EXTERN_C_END

Modified: trunk/Source/WebKit/ChangeLog (256293 => 256294)


--- trunk/Source/WebKit/ChangeLog	2020-02-11 06:26:49 UTC (rev 256293)
+++ trunk/Source/WebKit/ChangeLog	2020-02-11 08:10:59 UTC (rev 256294)
@@ -1,3 +1,13 @@
+2020-02-11  chris fleizach  <cfleiz...@apple.com>
+
+        AX: Unable to build webkit open source - build errors related to AXClientType
+        https://bugs.webkit.org/show_bug.cgi?id=207524
+        <rdar://problem/59279722>
+
+        Reviewed by Mark Lam.
+
+        * Platform/spi/mac/ApplicationServicesSPI.h:
+
 2020-02-10  Jiewen Tan  <jiewen_...@apple.com>
 
         [WebAuthn] Move the async code from WebAuthenticationPanelClient to AuthenticatorManager

Modified: trunk/Source/WebKit/Platform/spi/mac/ApplicationServicesSPI.h (256293 => 256294)


--- trunk/Source/WebKit/Platform/spi/mac/ApplicationServicesSPI.h	2020-02-11 06:26:49 UTC (rev 256293)
+++ trunk/Source/WebKit/Platform/spi/mac/ApplicationServicesSPI.h	2020-02-11 08:10:59 UTC (rev 256294)
@@ -33,25 +33,6 @@
 
 #else
 
-#if HAVE(AX_CLIENT_TYPE)
-
-typedef CF_ENUM(int32_t, AXClientType)
-{
-    kAXClientTypeNoActiveRequestFound  = 0,
-    kAXClientTypeUnknown,
-    kAXClientTypeRaft,
-    kAXClientTypeXCUITest,
-    kAXClientTypeXCTest,
-    kAXClientTypeScripter2,
-    kAXClientTypeSystemEvents,
-    kAXClientTypeVoiceOver,
-    kAXClientTypeAssistiveControl,
-    kAXClientTypeFullKeyboardAccess,
-    kAXClientTypeDictation,
-};
-
-#endif // HAVE(AX_CLIENT_TYPE)
-
 typedef enum {
     AXSuspendStatusRunning = 0,
     AXSuspendStatusSuspended,
@@ -59,8 +40,4 @@
 
 #endif
 
-#if HAVE(AX_CLIENT_TYPE)
-extern AXClientType _AXGetClientForCurrentRequestUntrusted(void);
-#endif // HAVE(AX_CLIENT_TYPE)
-
 #endif // PLATFORM(MAC)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to