WebKit Bugzilla
Attachment 370505 Details for
Bug 198180
: Fix a few missing header inclusions often masked by by unified sources
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-198180-20190523173441.patch (text/plain), 3.70 KB, created by
Adrian Perez
on 2019-05-23 07:34:43 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Adrian Perez
Created:
2019-05-23 07:34:43 PDT
Size:
3.70 KB
patch
obsolete
>Subversion Revision: 245680 >diff --git a/Source/JavaScriptCore/ChangeLog b/Source/JavaScriptCore/ChangeLog >index b4d8c88d041779edef38ffd8a58f880cf3e4114a..1b6b3919d4e4e760bbc3b48d7cc417837fb60cef 100644 >--- a/Source/JavaScriptCore/ChangeLog >+++ b/Source/JavaScriptCore/ChangeLog >@@ -1,3 +1,13 @@ >+2019-05-23 Adrian Perez de Castro <aperez@igalia.com> >+ >+ Fix a few missing header inclusions often masked by by unified sources >+ https://bugs.webkit.org/show_bug.cgi?id=198180 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * assembler/PerfLog.cpp: Add missing <array> header inclusion. >+ * wasm/WasmBinding.cpp: Add missing "WasmCallingConvention.h" inclusion. >+ > 2019-05-23 Tadeu Zagallo <tzagallo@apple.com> > > createListFromArrayLike should throw if value is not an object >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 118b6241a90d6d2b19c8ee3dfa989d9d3b7963ac..a01c849c1d1ff3bd4b8d8a28c5c2088d16646b3d 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,14 @@ >+2019-05-23 Adrian Perez de Castro <aperez@igalia.com> >+ >+ Fix a few missing header inclusions often masked by by unified sources >+ https://bugs.webkit.org/show_bug.cgi?id=198180 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * 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 <mmaxfield@apple.com> > > [WHLSL] Implement property resolver >diff --git a/Source/JavaScriptCore/assembler/PerfLog.cpp b/Source/JavaScriptCore/assembler/PerfLog.cpp >index 143c46d8323500f7a2cc7da87bf2b99b187d7e6f..f70712fc26b17daa576d986797caddbc71b558b0 100644 >--- a/Source/JavaScriptCore/assembler/PerfLog.cpp >+++ b/Source/JavaScriptCore/assembler/PerfLog.cpp >@@ -28,6 +28,7 @@ > > #if ENABLE(ASSEMBLER) && OS(LINUX) > >+#include <array> > #include <elf.h> > #include <fcntl.h> > #include <mutex> >diff --git a/Source/JavaScriptCore/wasm/WasmBinding.cpp b/Source/JavaScriptCore/wasm/WasmBinding.cpp >index 0c53cb66fd0db32d8834bfe6a23c4b067f6ed281..fed45b1063c9a36bf651cf803ee10f1c5be7c654 100644 >--- a/Source/JavaScriptCore/wasm/WasmBinding.cpp >+++ b/Source/JavaScriptCore/wasm/WasmBinding.cpp >@@ -31,6 +31,7 @@ > #include "CCallHelpers.h" > #include "JSCInlines.h" > #include "LinkBuffer.h" >+#include "WasmCallingConvention.h" > #include "WasmInstance.h" > > namespace JSC { namespace Wasm { >diff --git a/Source/WebCore/editing/markup.h b/Source/WebCore/editing/markup.h >index 7922a78b8055bab2f23fb18b59fc688717a9d0a7..e8696bb142b5306c245af2a90e5de0d344538425 100644 >--- a/Source/WebCore/editing/markup.h >+++ b/Source/WebCore/editing/markup.h >@@ -26,6 +26,7 @@ > #pragma once > > #include "ExceptionOr.h" >+#include "FloatSize.h" > #include "FragmentScriptingPermission.h" > #include "HTMLInterchange.h" > #include <wtf/Forward.h> >diff --git a/Source/WebCore/html/FeaturePolicy.cpp b/Source/WebCore/html/FeaturePolicy.cpp >index b9187f1a2ac68565a6a57c49319b8d58d90c7026..3da8742262f36529f8cc08cf31c6ac81bcc94baa 100644 >--- a/Source/WebCore/html/FeaturePolicy.cpp >+++ b/Source/WebCore/html/FeaturePolicy.cpp >@@ -27,6 +27,7 @@ > #include "FeaturePolicy.h" > > #include "Document.h" >+#include "HTMLParserIdioms.h" > #include "SecurityOrigin.h" > > namespace WebCore { >diff --git a/Source/WebCore/platform/text/TextCodec.cpp b/Source/WebCore/platform/text/TextCodec.cpp >index 86b89cfc476f03b6db4f78fb42c183f4897dad84..481dd289a62192b9acb4c88480db91899e47058f 100644 >--- a/Source/WebCore/platform/text/TextCodec.cpp >+++ b/Source/WebCore/platform/text/TextCodec.cpp >@@ -28,6 +28,7 @@ > #include "TextCodec.h" > > #include <array> >+#include <cstdio> > > namespace WebCore { >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 198180
: 370505