Title: [246259] releases/WebKitGTK/webkit-2.24/Source
Revision
246259
Author
[email protected]
Date
2019-06-10 07:39:01 -0700 (Mon, 10 Jun 2019)

Log Message

Merged r245681 - Fix a few missing header inclusions often masked by by unified sources
https://bugs.webkit.org/show_bug.cgi?id=198180

Reviewed by Eric Carlson.

Source/_javascript_Core:

* assembler/PerfLog.cpp: Add missing <array> header inclusion.
* wasm/WasmBinding.cpp: Add missing "WasmCallingConvention.h" inclusion.

Source/WebCore:

* editing/markup.h: Add missing "FloatSize.h" inclusion.
* html/FeaturePolicy.cpp: Add missing "HTMLParserIdioms.h" inclusion.
* platform/text/TextCodec.cpp: Add missing <cstdio> inclusion.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.24/Source/_javascript_Core/ChangeLog (246258 => 246259)


--- releases/WebKitGTK/webkit-2.24/Source/_javascript_Core/ChangeLog	2019-06-10 14:38:47 UTC (rev 246258)
+++ releases/WebKitGTK/webkit-2.24/Source/_javascript_Core/ChangeLog	2019-06-10 14:39:01 UTC (rev 246259)
@@ -1,3 +1,13 @@
+2019-05-23  Adrian Perez de Castro  <[email protected]>
+
+        Fix a few missing header inclusions often masked by by unified sources
+        https://bugs.webkit.org/show_bug.cgi?id=198180
+
+        Reviewed by Eric Carlson.
+
+        * assembler/PerfLog.cpp: Add missing <array> header inclusion.
+        * wasm/WasmBinding.cpp: Add missing "WasmCallingConvention.h" inclusion.
+
 2019-03-17  Diego Pino Garcia  <[email protected]>
 
         Fix WPE and GTK Debug builds after r243049

Modified: releases/WebKitGTK/webkit-2.24/Source/_javascript_Core/assembler/PerfLog.cpp (246258 => 246259)


--- releases/WebKitGTK/webkit-2.24/Source/_javascript_Core/assembler/PerfLog.cpp	2019-06-10 14:38:47 UTC (rev 246258)
+++ releases/WebKitGTK/webkit-2.24/Source/_javascript_Core/assembler/PerfLog.cpp	2019-06-10 14:39:01 UTC (rev 246259)
@@ -28,6 +28,7 @@
 
 #if ENABLE(ASSEMBLER) && OS(LINUX)
 
+#include <array>
 #include <elf.h>
 #include <fcntl.h>
 #include <mutex>

Modified: releases/WebKitGTK/webkit-2.24/Source/_javascript_Core/wasm/WasmBinding.cpp (246258 => 246259)


--- releases/WebKitGTK/webkit-2.24/Source/_javascript_Core/wasm/WasmBinding.cpp	2019-06-10 14:38:47 UTC (rev 246258)
+++ releases/WebKitGTK/webkit-2.24/Source/_javascript_Core/wasm/WasmBinding.cpp	2019-06-10 14:39:01 UTC (rev 246259)
@@ -31,6 +31,7 @@
 #include "CCallHelpers.h"
 #include "JSCInlines.h"
 #include "LinkBuffer.h"
+#include "WasmCallingConvention.h"
 #include "WasmInstance.h"
 
 namespace JSC { namespace Wasm {

Modified: releases/WebKitGTK/webkit-2.24/Source/WebCore/ChangeLog (246258 => 246259)


--- releases/WebKitGTK/webkit-2.24/Source/WebCore/ChangeLog	2019-06-10 14:38:47 UTC (rev 246258)
+++ releases/WebKitGTK/webkit-2.24/Source/WebCore/ChangeLog	2019-06-10 14:39:01 UTC (rev 246259)
@@ -1,3 +1,14 @@
+2019-05-23  Adrian Perez de Castro  <[email protected]>
+
+        Fix a few missing header inclusions often masked by by unified sources
+        https://bugs.webkit.org/show_bug.cgi?id=198180
+
+        Reviewed by Eric Carlson.
+
+        * editing/markup.h: Add missing "FloatSize.h" inclusion.
+        * html/FeaturePolicy.cpp: Add missing "HTMLParserIdioms.h" inclusion.
+        * platform/text/TextCodec.cpp: Add missing <cstdio> inclusion.
+
 2019-04-01  Pablo Saavedra  <[email protected]>
 
         Build failure after r243644 in GTK Linux 64-bit stable builds

Modified: releases/WebKitGTK/webkit-2.24/Source/WebCore/editing/markup.h (246258 => 246259)


--- releases/WebKitGTK/webkit-2.24/Source/WebCore/editing/markup.h	2019-06-10 14:38:47 UTC (rev 246258)
+++ releases/WebKitGTK/webkit-2.24/Source/WebCore/editing/markup.h	2019-06-10 14:39:01 UTC (rev 246259)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include "ExceptionOr.h"
+#include "FloatSize.h"
 #include "FragmentScriptingPermission.h"
 #include "HTMLInterchange.h"
 #include <wtf/Forward.h>

Modified: releases/WebKitGTK/webkit-2.24/Source/WebCore/platform/text/TextCodec.cpp (246258 => 246259)


--- releases/WebKitGTK/webkit-2.24/Source/WebCore/platform/text/TextCodec.cpp	2019-06-10 14:38:47 UTC (rev 246258)
+++ releases/WebKitGTK/webkit-2.24/Source/WebCore/platform/text/TextCodec.cpp	2019-06-10 14:39:01 UTC (rev 246259)
@@ -28,6 +28,7 @@
 #include "TextCodec.h"
 
 #include <array>
+#include <cstdio>
 
 namespace WebCore {
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to