Title: [264332] trunk/Source
Revision
264332
Author
[email protected]
Date
2020-07-13 22:44:25 -0700 (Mon, 13 Jul 2020)

Log Message

Unreviewed non-unified build fixes

Source/_javascript_Core:

* dfg/DFGCodeOriginPool.h:

Source/WebCore:

* animation/CSSTransition.cpp:
* html/HTMLFormControlElement.cpp:
* html/ImageData.cpp:
* inspector/InspectorInstrumentationWebKit.h:
* layout/FormattingContextGeometry.cpp:
* layout/floats/FloatingContext.cpp:
* layout/floats/FloatingState.cpp:
* layout/tableformatting/TableFormattingContext.cpp:
* loader/MediaResourceLoader.cpp:
* platform/FrameRateMonitor.h:
* platform/graphics/ColorSerialization.cpp:
* platform/graphics/ColorSerialization.h:
* svg/SVGNumber.h:
* svg/SVGParserUtilities.h:
* svg/SVGTransformList.cpp:
* svg/SVGZoomAndPan.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (264331 => 264332)


--- trunk/Source/_javascript_Core/ChangeLog	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-07-14 05:44:25 UTC (rev 264332)
@@ -1,3 +1,9 @@
+2020-07-13  Fujii Hironori  <[email protected]>
+
+        Unreviewed non-unified build fixes
+
+        * dfg/DFGCodeOriginPool.h:
+
 2020-07-13  Saam Barati  <[email protected]>
 
         returnEarlyFromInfiniteLoopsForFuzzing and validateDoesGC may fail when used together in the FTL

Modified: trunk/Source/_javascript_Core/dfg/DFGCodeOriginPool.h (264331 => 264332)


--- trunk/Source/_javascript_Core/dfg/DFGCodeOriginPool.h	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/_javascript_Core/dfg/DFGCodeOriginPool.h	2020-07-14 05:44:25 UTC (rev 264332)
@@ -27,6 +27,9 @@
 
 #if ENABLE(DFG_JIT)
 
+#include "CallFrame.h"
+#include <wtf/ThreadSafeRefCounted.h>
+
 namespace JSC { namespace DFG {
 
 class CodeOriginPool : public ThreadSafeRefCounted<CodeOriginPool> {

Modified: trunk/Source/WebCore/ChangeLog (264331 => 264332)


--- trunk/Source/WebCore/ChangeLog	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/ChangeLog	2020-07-14 05:44:25 UTC (rev 264332)
@@ -1,3 +1,24 @@
+2020-07-13  Fujii Hironori  <[email protected]>
+
+        Unreviewed non-unified build fixes
+
+        * animation/CSSTransition.cpp:
+        * html/HTMLFormControlElement.cpp:
+        * html/ImageData.cpp:
+        * inspector/InspectorInstrumentationWebKit.h:
+        * layout/FormattingContextGeometry.cpp:
+        * layout/floats/FloatingContext.cpp:
+        * layout/floats/FloatingState.cpp:
+        * layout/tableformatting/TableFormattingContext.cpp:
+        * loader/MediaResourceLoader.cpp:
+        * platform/FrameRateMonitor.h:
+        * platform/graphics/ColorSerialization.cpp:
+        * platform/graphics/ColorSerialization.h:
+        * svg/SVGNumber.h:
+        * svg/SVGParserUtilities.h:
+        * svg/SVGTransformList.cpp:
+        * svg/SVGZoomAndPan.cpp:
+
 2020-07-13  Peng Liu  <[email protected]>
 
         Keyboard remains on full screen video view after back from PiP

Modified: trunk/Source/WebCore/animation/CSSTransition.cpp (264331 => 264332)


--- trunk/Source/WebCore/animation/CSSTransition.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/animation/CSSTransition.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -27,6 +27,7 @@
 #include "CSSTransition.h"
 
 #include "Animation.h"
+#include "DocumentTimeline.h"
 #include "Element.h"
 #include "InspectorInstrumentation.h"
 #include "KeyframeEffect.h"

Modified: trunk/Source/WebCore/html/HTMLFormControlElement.cpp (264331 => 264332)


--- trunk/Source/WebCore/html/HTMLFormControlElement.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/html/HTMLFormControlElement.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -38,6 +38,7 @@
 #include "HTMLFormElement.h"
 #include "HTMLInputElement.h"
 #include "HTMLLegendElement.h"
+#include "HTMLParserIdioms.h"
 #include "HTMLTextAreaElement.h"
 #include "Quirks.h"
 #include "RenderBox.h"

Modified: trunk/Source/WebCore/html/ImageData.cpp (264331 => 264332)


--- trunk/Source/WebCore/html/ImageData.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/html/ImageData.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -32,6 +32,7 @@
 
 #include <_javascript_Core/JSCInlines.h>
 #include <_javascript_Core/TypedArrayInlines.h>
+#include <wtf/text/TextStream.h>
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/inspector/InspectorInstrumentationWebKit.h (264331 => 264332)


--- trunk/Source/WebCore/inspector/InspectorInstrumentationWebKit.h	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/inspector/InspectorInstrumentationWebKit.h	2020-07-14 05:44:25 UTC (rev 264332)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include "InspectorInstrumentationPublic.h"
+#include "ResourceLoader.h"
 #include <wtf/CompletionHandler.h>
 #include <wtf/Function.h>
 
@@ -32,6 +33,7 @@
 namespace WebCore {
 
 class Frame;
+class ResourceRequest;
 class ResourceResponse;
 class SharedBuffer;
 

Modified: trunk/Source/WebCore/layout/FormattingContextGeometry.cpp (264331 => 264332)


--- trunk/Source/WebCore/layout/FormattingContextGeometry.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/layout/FormattingContextGeometry.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -32,6 +32,7 @@
 #include "FloatingState.h"
 #include "InlineFormattingState.h"
 #include "LayoutContext.h"
+#include "LayoutInitialContainingBlock.h"
 #include "LayoutReplacedBox.h"
 #include "Logging.h"
 #include "TableFormattingState.h"

Modified: trunk/Source/WebCore/layout/floats/FloatingContext.cpp (264331 => 264332)


--- trunk/Source/WebCore/layout/floats/FloatingContext.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/layout/floats/FloatingContext.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -28,6 +28,7 @@
 
 #if ENABLE(LAYOUT_FORMATTING_CONTEXT)
 
+#include "BlockFormattingState.h"
 #include "DisplayBox.h"
 #include "FloatAvoider.h"
 #include "FormattingContext.h"

Modified: trunk/Source/WebCore/layout/floats/FloatingState.cpp (264331 => 264332)


--- trunk/Source/WebCore/layout/floats/FloatingState.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/layout/floats/FloatingState.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -32,6 +32,7 @@
 #include "LayoutBox.h"
 #include "LayoutContainerBox.h"
 #include "LayoutState.h"
+#include "RuntimeEnabledFeatures.h"
 #include <wtf/IsoMallocInlines.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/layout/tableformatting/TableFormattingContext.cpp (264331 => 264332)


--- trunk/Source/WebCore/layout/tableformatting/TableFormattingContext.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/layout/tableformatting/TableFormattingContext.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -31,6 +31,7 @@
 #include "BlockFormattingState.h"
 #include "DisplayBox.h"
 #include "FloatingState.h"
+#include "InlineFormattingState.h"
 #include "InvalidationState.h"
 #include "LayoutBox.h"
 #include "LayoutChildIterator.h"

Modified: trunk/Source/WebCore/loader/MediaResourceLoader.cpp (264331 => 264332)


--- trunk/Source/WebCore/loader/MediaResourceLoader.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/loader/MediaResourceLoader.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -34,6 +34,7 @@
 #include "CachedResourceRequest.h"
 #include "CrossOriginAccessControl.h"
 #include "Document.h"
+#include "FrameLoaderClient.h"
 #include "HTMLMediaElement.h"
 #include "InspectorInstrumentation.h"
 #include "SecurityOrigin.h"

Modified: trunk/Source/WebCore/platform/FrameRateMonitor.h (264331 => 264332)


--- trunk/Source/WebCore/platform/FrameRateMonitor.h	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/platform/FrameRateMonitor.h	2020-07-14 05:44:25 UTC (rev 264332)
@@ -26,6 +26,7 @@
 #pragma once
 
 #include <wtf/Deque.h>
+#include <wtf/Function.h>
 #include <wtf/MonotonicTime.h>
 
 namespace WebCore {

Modified: trunk/Source/WebCore/platform/graphics/ColorSerialization.cpp (264331 => 264332)


--- trunk/Source/WebCore/platform/graphics/ColorSerialization.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/platform/graphics/ColorSerialization.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -26,6 +26,8 @@
 #include "config.h"
 #include "ColorSerialization.h"
 
+#include "Color.h"
+#include "ExtendedColor.h"
 #include <wtf/Assertions.h>
 #include <wtf/HexNumber.h>
 #include <wtf/MathExtras.h>

Modified: trunk/Source/WebCore/platform/graphics/ColorSerialization.h (264331 => 264332)


--- trunk/Source/WebCore/platform/graphics/ColorSerialization.h	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/platform/graphics/ColorSerialization.h	2020-07-14 05:44:25 UTC (rev 264332)
@@ -25,6 +25,8 @@
 
 #pragma once
 
+#include <wtf/text/WTFString.h>
+
 namespace WebCore {
 
 class Color;

Modified: trunk/Source/WebCore/svg/SVGNumber.h (264331 => 264332)


--- trunk/Source/WebCore/svg/SVGNumber.h	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/svg/SVGNumber.h	2020-07-14 05:44:25 UTC (rev 264332)
@@ -25,6 +25,8 @@
 
 #pragma once
 
+#include "ExceptionOr.h"
+#include "SVGPropertyTraits.h"
 #include "SVGValueProperty.h"
 
 namespace WebCore {

Modified: trunk/Source/WebCore/svg/SVGParserUtilities.h (264331 => 264332)


--- trunk/Source/WebCore/svg/SVGParserUtilities.h	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/svg/SVGParserUtilities.h	2020-07-14 05:44:25 UTC (rev 264332)
@@ -24,6 +24,7 @@
 #include "ParsingUtilities.h"
 #include <wtf/HashSet.h>
 #include <wtf/Vector.h>
+#include <wtf/text/WTFString.h>
 
 typedef std::pair<UChar32, UChar32> UnicodeRange;
 typedef Vector<UnicodeRange> UnicodeRanges;

Modified: trunk/Source/WebCore/svg/SVGTransformList.cpp (264331 => 264332)


--- trunk/Source/WebCore/svg/SVGTransformList.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/svg/SVGTransformList.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -26,6 +26,7 @@
 #include "config.h"
 #include "SVGTransformList.h"
 
+#include "SVGParserUtilities.h"
 #include <wtf/text/StringBuilder.h>
 #include <wtf/text/StringParsingBuffer.h>
 

Modified: trunk/Source/WebCore/svg/SVGZoomAndPan.cpp (264331 => 264332)


--- trunk/Source/WebCore/svg/SVGZoomAndPan.cpp	2020-07-14 05:17:20 UTC (rev 264331)
+++ trunk/Source/WebCore/svg/SVGZoomAndPan.cpp	2020-07-14 05:44:25 UTC (rev 264332)
@@ -22,6 +22,9 @@
 #include "config.h"
 #include "SVGZoomAndPan.h"
 
+#include <wtf/text/StringConcatenateNumbers.h>
+#include <wtf/text/StringParsingBuffer.h>
+
 namespace WebCore {
 
 template<typename CharacterType> static constexpr CharacterType disable[] = { 'd', 'i', 's', 'a', 'b', 'l', 'e' };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to