Unreviewed build fix after r259396.

Source/WebCore/PAL:

* pal/spi/cocoa/LaunchServicesSPI.h:

Source/WebKit:

* Shared/mac/AuxiliaryProcessMac.mm:



git-svn-id: http://svn.webkit.org/repository/webkit/trunk@259425 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/PAL/ChangeLog b/Source/WebCore/PAL/ChangeLog
index 9151130..e41a272 100644
--- a/Source/WebCore/PAL/ChangeLog
+++ b/Source/WebCore/PAL/ChangeLog
@@ -6,6 +6,12 @@
 
 2020-04-02  Per Arne Vollan  <pvollan@apple.com>
 
+        Unreviewed build fix after r259396.
+
+        * pal/spi/cocoa/LaunchServicesSPI.h:
+
+2020-04-02  Per Arne Vollan  <pvollan@apple.com>
+
         Unreviewed build fix.
 
         * pal/spi/cocoa/CoreServicesSPI.h:
diff --git a/Source/WebCore/PAL/pal/spi/cocoa/LaunchServicesSPI.h b/Source/WebCore/PAL/pal/spi/cocoa/LaunchServicesSPI.h
index 6a1a281..6e84d5d 100644
--- a/Source/WebCore/PAL/pal/spi/cocoa/LaunchServicesSPI.h
+++ b/Source/WebCore/PAL/pal/spi/cocoa/LaunchServicesSPI.h
@@ -109,6 +109,12 @@
 
 #if PLATFORM(MAC) || PLATFORM(MACCATALYST)
 
+#if PLATFORM(MACCATALYST) && USE(APPLE_INTERNAL_SDK)
+enum LSSessionID {
+    kLSDefaultSessionID = -2,
+};
+#endif
+
 WTF_EXTERN_C_BEGIN
 
 typedef bool (^LSServerConnectionAllowedBlock) (CFDictionaryRef optionsRef);
diff --git a/Source/WebKit/ChangeLog b/Source/WebKit/ChangeLog
index aae67e2..150fb0d 100644
--- a/Source/WebKit/ChangeLog
+++ b/Source/WebKit/ChangeLog
@@ -1,3 +1,9 @@
+2020-04-02  Per Arne Vollan  <pvollan@apple.com>
+
+        Unreviewed build fix after r259396.
+
+        * Shared/mac/AuxiliaryProcessMac.mm:
+
 2020-04-02  David Kilzer  <ddkilzer@apple.com>
 
         WebPageProxy attachment methods should return early if attachment element is not enabled
diff --git a/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm b/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm
index 90f03a5..31c2d3d 100644
--- a/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm
+++ b/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm
@@ -67,12 +67,6 @@
 #define USE_CACHE_COMPILED_SANDBOX 0
 #endif
 
-#if PLATFORM(MACCATALYST) && USE(APPLE_INTERNAL_SDK)
-enum LSSessionID {
-    kLSDefaultSessionID = -2,
-};
-#endif
-
 namespace WebKit {
 using namespace WebCore;