Title: [206831] trunk/Source/WebCore
Revision
206831
Author
[email protected]
Date
2016-10-05 14:23:34 -0700 (Wed, 05 Oct 2016)

Log Message

Unreviewed build fix after r206830

* platform/graphics/win/FontPlatformDataWin.cpp: Add missing include
when building with Direct2D.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (206830 => 206831)


--- trunk/Source/WebCore/ChangeLog	2016-10-05 21:16:27 UTC (rev 206830)
+++ trunk/Source/WebCore/ChangeLog	2016-10-05 21:23:34 UTC (rev 206831)
@@ -1,5 +1,12 @@
 2016-10-05  Brent Fulgham  <[email protected]>
 
+        Unreviewed build fix after r206830
+
+        * platform/graphics/win/FontPlatformDataWin.cpp: Add missing include
+        when building with Direct2D.
+
+2016-10-05  Brent Fulgham  <[email protected]>
+
         [Win][Direct2D] Disable some CoreGraphics and CoreAnimation-based logic when building for D2D
         https://bugs.webkit.org/show_bug.cgi?id=162977
 

Modified: trunk/Source/WebCore/platform/graphics/win/FontPlatformDataWin.cpp (206830 => 206831)


--- trunk/Source/WebCore/platform/graphics/win/FontPlatformDataWin.cpp	2016-10-05 21:16:27 UTC (rev 206830)
+++ trunk/Source/WebCore/platform/graphics/win/FontPlatformDataWin.cpp	2016-10-05 21:23:34 UTC (rev 206831)
@@ -33,6 +33,10 @@
 #include <wtf/text/StringHash.h>
 #include <wtf/text/WTFString.h>
 
+#if USE(DIRECT2D)
+#include <dwrite.h>
+#endif
+
 using std::min;
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to