Title: [201241] trunk/Source/WebCore
Revision
201241
Author
[email protected]
Date
2016-05-20 23:15:09 -0700 (Fri, 20 May 2016)

Log Message

Fixed USE(APPLE_INTERNAL_SDK) builds.

* platform/cocoa/ThemeCocoa.mm:
(WebCore::fitContextToBox):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (201240 => 201241)


--- trunk/Source/WebCore/ChangeLog	2016-05-21 05:22:33 UTC (rev 201240)
+++ trunk/Source/WebCore/ChangeLog	2016-05-21 06:15:09 UTC (rev 201241)
@@ -1,3 +1,10 @@
+2016-05-20  Dan Bernstein  <[email protected]>
+
+        Fixed USE(APPLE_INTERNAL_SDK) builds.
+
+        * platform/cocoa/ThemeCocoa.mm:
+        (WebCore::fitContextToBox):
+
 2016-05-20  Joseph Pecoraro  <[email protected]>
 
         Remove LegacyProfiler

Modified: trunk/Source/WebCore/platform/cocoa/ThemeCocoa.mm (201240 => 201241)


--- trunk/Source/WebCore/platform/cocoa/ThemeCocoa.mm	2016-05-21 05:22:33 UTC (rev 201240)
+++ trunk/Source/WebCore/platform/cocoa/ThemeCocoa.mm	2016-05-21 06:15:09 UTC (rev 201241)
@@ -28,6 +28,10 @@
 
 #import "GraphicsContext.h"
 
+#if USE(APPLE_INTERNAL_SDK)
+#import <dlfcn.h>
+#endif
+
 namespace WebCore {
 
 static void fitContextToBox(GraphicsContext& context, const FloatSize& srcImageSize, const FloatSize& dstSize)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to