Title: [260417] trunk/Source
Revision
260417
Author
ape...@igalia.com
Date
2020-04-21 00:48:52 -0700 (Tue, 21 Apr 2020)

Log Message

Non-unified build fixes late February 2020 edition
https://bugs.webkit.org/show_bug.cgi?id=210767

Unreviewed build fix.

Source/_javascript_Core:


* dfg/DFGValueRepReductionPhase.cpp: Add missing JSCJSValueInlines.h header.
* jit/JITCall.cpp: Add missing SlowPathCall.h header.
* runtime/AggregateError.cpp: Add missing JSCJSValueInlines.h, JSCellInlines.h, and
JSGlobalObjectInlines.h headers.
* runtime/AggregateErrorConstructor.cpp: Added missing JSCJSValueInlines.h, JSCellInlines.h,
and VMInlines.h headers.
* runtime/AggregateErrorPrototype.cpp: Added missing AggregateError.h, IdentifierInlines.h,
JSCJSValueInlines.h, JSCellInlines.h, JSGlobalObjectInlines.h, and VMInlines.h headers.
* runtime/Intrinsic.h: Added missing wtf/Optional.h header.

Source/WebCore:

No new tests needed.


* css/MediaQueryListEvent.cpp: Add missing wtf/IsoMallocInlines.h header.
* css/MediaQueryMatcher.cpp: Add missing MediaQueryListEvent.h header.
* platform/graphics/FloatQuad.cpp: Add missing wtf/text/TextStream.h header.

Source/WebKit:


* NetworkProcess/NetworkResourceLoadMap.h: Add missing wtf/Function.h header.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (260416 => 260417)


--- trunk/Source/_javascript_Core/ChangeLog	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-04-21 07:48:52 UTC (rev 260417)
@@ -1,3 +1,20 @@
+2020-04-21  Adrian Perez de Castro  <ape...@igalia.com>
+
+        Non-unified build fixes late February 2020 edition
+        https://bugs.webkit.org/show_bug.cgi?id=210767
+
+        Unreviewed build fix.
+
+        * dfg/DFGValueRepReductionPhase.cpp: Add missing JSCJSValueInlines.h header.
+        * jit/JITCall.cpp: Add missing SlowPathCall.h header.
+        * runtime/AggregateError.cpp: Add missing JSCJSValueInlines.h, JSCellInlines.h, and
+        JSGlobalObjectInlines.h headers.
+        * runtime/AggregateErrorConstructor.cpp: Added missing JSCJSValueInlines.h, JSCellInlines.h,
+        and VMInlines.h headers.
+        * runtime/AggregateErrorPrototype.cpp: Added missing AggregateError.h, IdentifierInlines.h,
+        JSCJSValueInlines.h, JSCellInlines.h, JSGlobalObjectInlines.h, and VMInlines.h headers.
+        * runtime/Intrinsic.h: Added missing wtf/Optional.h header.
+
 2020-04-20  Ross Kirsling  <ross.kirsl...@sony.com>
 
         Classes marked final should not use protected access specifier

Modified: trunk/Source/_javascript_Core/dfg/DFGValueRepReductionPhase.cpp (260416 => 260417)


--- trunk/Source/_javascript_Core/dfg/DFGValueRepReductionPhase.cpp	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/_javascript_Core/dfg/DFGValueRepReductionPhase.cpp	2020-04-21 07:48:52 UTC (rev 260417)
@@ -32,6 +32,7 @@
 #include "DFGInsertionSet.h"
 #include "DFGPhase.h"
 #include "DFGPhiChildren.h"
+#include "JSCJSValueInlines.h"
 
 namespace JSC { namespace DFG {
 

Modified: trunk/Source/_javascript_Core/jit/JITCall.cpp (260416 => 260417)


--- trunk/Source/_javascript_Core/jit/JITCall.cpp	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/_javascript_Core/jit/JITCall.cpp	2020-04-21 07:48:52 UTC (rev 260417)
@@ -42,6 +42,7 @@
 #include "OpcodeInlines.h"
 #include "ResultType.h"
 #include "SetupVarargsFrame.h"
+#include "SlowPathCall.h"
 #include "StackAlignment.h"
 #include "ThunkGenerators.h"
 

Modified: trunk/Source/_javascript_Core/runtime/AggregateError.cpp (260416 => 260417)


--- trunk/Source/_javascript_Core/runtime/AggregateError.cpp	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/_javascript_Core/runtime/AggregateError.cpp	2020-04-21 07:48:52 UTC (rev 260417)
@@ -29,6 +29,9 @@
 #include "ClassInfo.h"
 #include "ExceptionScope.h"
 #include "IteratorOperations.h"
+#include "JSCJSValueInlines.h"
+#include "JSCellInlines.h"
+#include "JSGlobalObjectInlines.h"
 #include <wtf/Locker.h>
 
 namespace JSC {

Modified: trunk/Source/_javascript_Core/runtime/AggregateErrorConstructor.cpp (260416 => 260417)


--- trunk/Source/_javascript_Core/runtime/AggregateErrorConstructor.cpp	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/_javascript_Core/runtime/AggregateErrorConstructor.cpp	2020-04-21 07:48:52 UTC (rev 260417)
@@ -30,7 +30,10 @@
 #include "ClassInfo.h"
 #include "ExceptionScope.h"
 #include "GCAssertions.h"
+#include "JSCJSValueInlines.h"
+#include "JSCellInlines.h"
 #include "RuntimeType.h"
+#include "VMInlines.h"
 
 namespace JSC {
 

Modified: trunk/Source/_javascript_Core/runtime/AggregateErrorPrototype.cpp (260416 => 260417)


--- trunk/Source/_javascript_Core/runtime/AggregateErrorPrototype.cpp	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/_javascript_Core/runtime/AggregateErrorPrototype.cpp	2020-04-21 07:48:52 UTC (rev 260417)
@@ -26,11 +26,17 @@
 #include "config.h"
 #include "AggregateErrorPrototype.h"
 
+#include "AggregateError.h"
 #include "CallFrame.h"
 #include "Error.h"
+#include "IdentifierInlines.h"
+#include "JSCJSValueInlines.h"
 #include "JSCell.h"
+#include "JSCellInlines.h"
+#include "JSGlobalObjectInlines.h"
 #include "JSObject.h"
 #include "ThrowScope.h"
+#include "VMInlines.h"
 #include <wtf/Locker.h>
 
 namespace JSC {

Modified: trunk/Source/_javascript_Core/runtime/Intrinsic.h (260416 => 260417)


--- trunk/Source/_javascript_Core/runtime/Intrinsic.h	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/_javascript_Core/runtime/Intrinsic.h	2020-04-21 07:48:52 UTC (rev 260417)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include "IterationKind.h"
+#include <wtf/Optional.h>
 
 namespace JSC {
 

Modified: trunk/Source/WebCore/ChangeLog (260416 => 260417)


--- trunk/Source/WebCore/ChangeLog	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/WebCore/ChangeLog	2020-04-21 07:48:52 UTC (rev 260417)
@@ -1,3 +1,16 @@
+2020-04-21  Adrian Perez de Castro  <ape...@igalia.com>
+
+        Non-unified build fixes late February 2020 edition
+        https://bugs.webkit.org/show_bug.cgi?id=210767
+
+        Unreviewed build fix.
+
+        No new tests needed.
+
+        * css/MediaQueryListEvent.cpp: Add missing wtf/IsoMallocInlines.h header.
+        * css/MediaQueryMatcher.cpp: Add missing MediaQueryListEvent.h header.
+        * platform/graphics/FloatQuad.cpp: Add missing wtf/text/TextStream.h header.
+
 2020-04-20  Ross Kirsling  <ross.kirsl...@sony.com>
 
         Classes marked final should not use protected access specifier

Modified: trunk/Source/WebCore/css/MediaQueryListEvent.cpp (260416 => 260417)


--- trunk/Source/WebCore/css/MediaQueryListEvent.cpp	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/WebCore/css/MediaQueryListEvent.cpp	2020-04-21 07:48:52 UTC (rev 260417)
@@ -26,6 +26,8 @@
 #include "config.h"
 #include "MediaQueryListEvent.h"
 
+#include <wtf/IsoMallocInlines.h>
+
 namespace WebCore {
 
 WTF_MAKE_ISO_ALLOCATED_IMPL(MediaQueryListEvent);

Modified: trunk/Source/WebCore/css/MediaQueryMatcher.cpp (260416 => 260417)


--- trunk/Source/WebCore/css/MediaQueryMatcher.cpp	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/WebCore/css/MediaQueryMatcher.cpp	2020-04-21 07:48:52 UTC (rev 260417)
@@ -28,6 +28,7 @@
 #include "MediaList.h"
 #include "MediaQueryEvaluator.h"
 #include "MediaQueryList.h"
+#include "MediaQueryListEvent.h"
 #include "MediaQueryParserContext.h"
 #include "NodeRenderStyle.h"
 #include "RenderElement.h"

Modified: trunk/Source/WebCore/platform/graphics/FloatQuad.cpp (260416 => 260417)


--- trunk/Source/WebCore/platform/graphics/FloatQuad.cpp	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/WebCore/platform/graphics/FloatQuad.cpp	2020-04-21 07:48:52 UTC (rev 260417)
@@ -34,6 +34,7 @@
 #include <algorithm>
 #include <limits>
 #include <wtf/MathExtras.h>
+#include <wtf/text/TextStream.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebKit/ChangeLog (260416 => 260417)


--- trunk/Source/WebKit/ChangeLog	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/WebKit/ChangeLog	2020-04-21 07:48:52 UTC (rev 260417)
@@ -1,3 +1,12 @@
+2020-04-21  Adrian Perez de Castro  <ape...@igalia.com>
+
+        Non-unified build fixes late February 2020 edition
+        https://bugs.webkit.org/show_bug.cgi?id=210767
+
+        Unreviewed build fix.
+
+        * NetworkProcess/NetworkResourceLoadMap.h: Add missing wtf/Function.h header.
+
 2020-04-20  Ross Kirsling  <ross.kirsl...@sony.com>
 
         Classes marked final should not use protected access specifier

Modified: trunk/Source/WebKit/NetworkProcess/NetworkResourceLoadMap.h (260416 => 260417)


--- trunk/Source/WebKit/NetworkProcess/NetworkResourceLoadMap.h	2020-04-21 06:59:14 UTC (rev 260416)
+++ trunk/Source/WebKit/NetworkProcess/NetworkResourceLoadMap.h	2020-04-21 07:48:52 UTC (rev 260417)
@@ -25,6 +25,7 @@
 
 #pragma once
 
+#include <wtf/Function.h>
 #include <wtf/HashMap.h>
 #include <wtf/HashSet.h>
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to