Title: [243042] trunk/Source/WebKit
Revision
243042
Author
timo...@apple.com
Date
2019-03-16 11:38:45 -0700 (Sat, 16 Mar 2019)

Log Message

REGRESSION (r242807): Unified sources build failure from missing imports.
https://bugs.webkit.org/show_bug.cgi?id=195852

Unreviewed speculative build fix.


* UIProcess/Cocoa/WebProcessPoolCocoa.mm:
Include <wtf/SoftLinking.h> and "UIKitSPI.h" on iOS.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (243041 => 243042)


--- trunk/Source/WebKit/ChangeLog	2019-03-16 16:35:16 UTC (rev 243041)
+++ trunk/Source/WebKit/ChangeLog	2019-03-16 18:38:45 UTC (rev 243042)
@@ -1,3 +1,13 @@
+2019-03-16  Timothy Hatcher  <timo...@apple.com>
+
+        REGRESSION (r242807): Unified sources build failure from missing imports.
+        https://bugs.webkit.org/show_bug.cgi?id=195852
+
+        Unreviewed speculative build fix.
+
+        * UIProcess/Cocoa/WebProcessPoolCocoa.mm:
+        Include <wtf/SoftLinking.h> and "UIKitSPI.h" on iOS.
+
 2019-03-15  Per Arne Vollan  <pvol...@apple.com>
 
         [iOS] Block the accessibility server when accessibility is not enabled.

Modified: trunk/Source/WebKit/UIProcess/Cocoa/WebProcessPoolCocoa.mm (243041 => 243042)


--- trunk/Source/WebKit/UIProcess/Cocoa/WebProcessPoolCocoa.mm	2019-03-16 16:35:16 UTC (rev 243041)
+++ trunk/Source/WebKit/UIProcess/Cocoa/WebProcessPoolCocoa.mm	2019-03-16 18:38:45 UTC (rev 243042)
@@ -61,6 +61,11 @@
 #import <QuartzCore/CARemoteLayerServer.h>
 #endif
 
+#if PLATFORM(IOS)
+#import "UIKitSPI.h"
+#import <wtf/SoftLinking.h>
+#endif
+
 NSString *WebServiceWorkerRegistrationDirectoryDefaultsKey = @"WebServiceWorkerRegistrationDirectory";
 NSString *WebKitLocalCacheDefaultsKey = @"WebKitLocalCache";
 NSString *WebKitJSCJITEnabledDefaultsKey = @"WebKitJSCJITEnabledDefaultsKey";
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to