Title: [209603] trunk/Source/WebCore
Revision
209603
Author
pvol...@apple.com
Date
2016-12-09 03:13:32 -0800 (Fri, 09 Dec 2016)

Log Message

Fix compile errors on Windows when building with .proj files.

Unreviewed build fix.

Fix include paths.

* platform/graphics/win/IntPointWin.cpp:
* platform/graphics/win/IntRectWin.cpp:
* platform/graphics/win/IntSizeWin.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (209602 => 209603)


--- trunk/Source/WebCore/ChangeLog	2016-12-09 10:50:47 UTC (rev 209602)
+++ trunk/Source/WebCore/ChangeLog	2016-12-09 11:13:32 UTC (rev 209603)
@@ -1,3 +1,15 @@
+2016-12-09  Per Arne Vollan  <pvol...@apple.com>
+
+        Fix compile errors on Windows when building with .proj files.
+
+        Unreviewed build fix.
+
+        Fix include paths.
+
+        * platform/graphics/win/IntPointWin.cpp:
+        * platform/graphics/win/IntRectWin.cpp:
+        * platform/graphics/win/IntSizeWin.cpp:
+
 2016-12-09  Csaba Osztrogonác  <o...@webkit.org>
 
         Unreviewed buildfix after r209570.

Modified: trunk/Source/WebCore/platform/graphics/win/IntPointWin.cpp (209602 => 209603)


--- trunk/Source/WebCore/platform/graphics/win/IntPointWin.cpp	2016-12-09 10:50:47 UTC (rev 209602)
+++ trunk/Source/WebCore/platform/graphics/win/IntPointWin.cpp	2016-12-09 11:13:32 UTC (rev 209603)
@@ -25,11 +25,12 @@
 
 #include "config.h"
 #include "IntPoint.h"
-#include "MathExtras.h"
 
 #include <d2d1.h>
 #include <windows.h>
 
+#include <wtf/MathExtras.h>
+
 namespace WebCore {
 
 IntPoint::IntPoint(const POINT& p)

Modified: trunk/Source/WebCore/platform/graphics/win/IntRectWin.cpp (209602 => 209603)


--- trunk/Source/WebCore/platform/graphics/win/IntRectWin.cpp	2016-12-09 10:50:47 UTC (rev 209602)
+++ trunk/Source/WebCore/platform/graphics/win/IntRectWin.cpp	2016-12-09 11:13:32 UTC (rev 209603)
@@ -27,10 +27,11 @@
 #include "config.h"
 #include "IntRect.h"
 
-#include "MathExtras.h"
 #include <d2d1.h>
 #include <windows.h>
 
+#include <wtf/MathExtras.h>
+
 namespace WebCore {
 
 IntRect::IntRect(const RECT& r)

Modified: trunk/Source/WebCore/platform/graphics/win/IntSizeWin.cpp (209602 => 209603)


--- trunk/Source/WebCore/platform/graphics/win/IntSizeWin.cpp	2016-12-09 10:50:47 UTC (rev 209602)
+++ trunk/Source/WebCore/platform/graphics/win/IntSizeWin.cpp	2016-12-09 11:13:32 UTC (rev 209603)
@@ -26,10 +26,11 @@
 #include "config.h"
 #include "IntSize.h"
 
-#include "MathExtras.h"
 #include <d2d1.h>
 #include <windows.h>
 
+#include <wtf/MathExtras.h>
+
 namespace WebCore {
 
 IntSize::IntSize(const SIZE& s)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to