Title: [245681] trunk/Source
- Revision
- 245681
- Author
- [email protected]
- Date
- 2019-05-23 08:47:10 -0700 (Thu, 23 May 2019)
Log Message
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: trunk/Source/_javascript_Core/ChangeLog (245680 => 245681)
--- trunk/Source/_javascript_Core/ChangeLog 2019-05-23 09:29:27 UTC (rev 245680)
+++ trunk/Source/_javascript_Core/ChangeLog 2019-05-23 15:47:10 UTC (rev 245681)
@@ -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-05-23 Tadeu Zagallo <[email protected]>
createListFromArrayLike should throw if value is not an object
Modified: trunk/Source/_javascript_Core/assembler/PerfLog.cpp (245680 => 245681)
--- trunk/Source/_javascript_Core/assembler/PerfLog.cpp 2019-05-23 09:29:27 UTC (rev 245680)
+++ trunk/Source/_javascript_Core/assembler/PerfLog.cpp 2019-05-23 15:47:10 UTC (rev 245681)
@@ -28,6 +28,7 @@
#if ENABLE(ASSEMBLER) && OS(LINUX)
+#include <array>
#include <elf.h>
#include <fcntl.h>
#include <mutex>
Modified: trunk/Source/_javascript_Core/wasm/WasmBinding.cpp (245680 => 245681)
--- trunk/Source/_javascript_Core/wasm/WasmBinding.cpp 2019-05-23 09:29:27 UTC (rev 245680)
+++ trunk/Source/_javascript_Core/wasm/WasmBinding.cpp 2019-05-23 15:47:10 UTC (rev 245681)
@@ -31,6 +31,7 @@
#include "CCallHelpers.h"
#include "JSCInlines.h"
#include "LinkBuffer.h"
+#include "WasmCallingConvention.h"
#include "WasmInstance.h"
namespace JSC { namespace Wasm {
Modified: trunk/Source/WebCore/ChangeLog (245680 => 245681)
--- trunk/Source/WebCore/ChangeLog 2019-05-23 09:29:27 UTC (rev 245680)
+++ trunk/Source/WebCore/ChangeLog 2019-05-23 15:47:10 UTC (rev 245681)
@@ -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-05-23 Myles C. Maxfield <[email protected]>
[WHLSL] Implement property resolver
Modified: trunk/Source/WebCore/editing/markup.h (245680 => 245681)
--- trunk/Source/WebCore/editing/markup.h 2019-05-23 09:29:27 UTC (rev 245680)
+++ trunk/Source/WebCore/editing/markup.h 2019-05-23 15:47:10 UTC (rev 245681)
@@ -26,6 +26,7 @@
#pragma once
#include "ExceptionOr.h"
+#include "FloatSize.h"
#include "FragmentScriptingPermission.h"
#include "HTMLInterchange.h"
#include <wtf/Forward.h>
Modified: trunk/Source/WebCore/html/FeaturePolicy.cpp (245680 => 245681)
--- trunk/Source/WebCore/html/FeaturePolicy.cpp 2019-05-23 09:29:27 UTC (rev 245680)
+++ trunk/Source/WebCore/html/FeaturePolicy.cpp 2019-05-23 15:47:10 UTC (rev 245681)
@@ -27,6 +27,7 @@
#include "FeaturePolicy.h"
#include "Document.h"
+#include "HTMLParserIdioms.h"
#include "SecurityOrigin.h"
namespace WebCore {
Modified: trunk/Source/WebCore/platform/text/TextCodec.cpp (245680 => 245681)
--- trunk/Source/WebCore/platform/text/TextCodec.cpp 2019-05-23 09:29:27 UTC (rev 245680)
+++ trunk/Source/WebCore/platform/text/TextCodec.cpp 2019-05-23 15:47:10 UTC (rev 245681)
@@ -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