Title: [257130] trunk/Source/WebCore
- Revision
- 257130
- Author
- [email protected]
- Date
- 2020-02-21 02:16:36 -0800 (Fri, 21 Feb 2020)
Log Message
Unreviewed build fix for Windows ports
> WebKitBuild\Release\WTF\Headers\wtf/RefPtr.h(44): error C2027: use of undefined type 'WebCore::ImageData'
RefPtr<ImageData> is used without defining ImageData.
* platform/graphics/ConcreteImageBuffer.h: Added #include "ImageData.h".
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (257129 => 257130)
--- trunk/Source/WebCore/ChangeLog 2020-02-21 08:26:17 UTC (rev 257129)
+++ trunk/Source/WebCore/ChangeLog 2020-02-21 10:16:36 UTC (rev 257130)
@@ -1,3 +1,13 @@
+2020-02-21 Fujii Hironori <[email protected]>
+
+ Unreviewed build fix for Windows ports
+
+ > WebKitBuild\Release\WTF\Headers\wtf/RefPtr.h(44): error C2027: use of undefined type 'WebCore::ImageData'
+
+ RefPtr<ImageData> is used without defining ImageData.
+
+ * platform/graphics/ConcreteImageBuffer.h: Added #include "ImageData.h".
+
2020-02-21 Jack Lee <[email protected]>
Nullptr crash in RenderStyle::isFlippedBlocksWritingMode when fragment flow gains a new in-flow descendant
Modified: trunk/Source/WebCore/platform/graphics/ConcreteImageBuffer.h (257129 => 257130)
--- trunk/Source/WebCore/platform/graphics/ConcreteImageBuffer.h 2020-02-21 08:26:17 UTC (rev 257129)
+++ trunk/Source/WebCore/platform/graphics/ConcreteImageBuffer.h 2020-02-21 10:16:36 UTC (rev 257130)
@@ -26,6 +26,7 @@
#pragma once
#include "ImageBuffer.h"
+#include "ImageData.h"
namespace WebCore {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes