Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (265198 => 265199)
--- trunk/Source/_javascript_Core/ChangeLog 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/_javascript_Core/ChangeLog 2020-08-03 16:42:33 UTC (rev 265199)
@@ -1,3 +1,14 @@
+2020-08-03 Adrian Perez de Castro <ape...@igalia.com>
+
+ Non-unified build fixes, early August 20202 edition
+ https://bugs.webkit.org/show_bug.cgi?id=215082
+
+ Unreviewed build fix.
+
+ * dfg/DFGOSREntry.h: Add missing inclusion of CodeLocation.h
+ * ftl/FTLGeneratedFunction.h: Ditto.
+ * jit/CallFrameShuffler.h: Forward-declare CCallHelpers.
+
2020-08-02 Yusuke Suzuki <ysuz...@apple.com>
Unreviewed, fix CLoop build
Modified: trunk/Source/_javascript_Core/dfg/DFGOSREntry.h (265198 => 265199)
--- trunk/Source/_javascript_Core/dfg/DFGOSREntry.h 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/_javascript_Core/dfg/DFGOSREntry.h 2020-08-03 16:42:33 UTC (rev 265199)
@@ -25,6 +25,7 @@
#pragma once
+#include "CodeLocation.h"
#include "DFGAbstractValue.h"
#include "DFGFlushFormat.h"
#include "MacroAssemblerCodeRef.h"
Modified: trunk/Source/_javascript_Core/ftl/FTLGeneratedFunction.h (265198 => 265199)
--- trunk/Source/_javascript_Core/ftl/FTLGeneratedFunction.h 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/_javascript_Core/ftl/FTLGeneratedFunction.h 2020-08-03 16:42:33 UTC (rev 265199)
@@ -28,6 +28,7 @@
#if ENABLE(FTL_JIT)
#include "CallFrame.h"
+#include "CodeLocation.h"
#include "MacroAssemblerCodeRef.h"
namespace JSC { namespace FTL {
Modified: trunk/Source/_javascript_Core/jit/CallFrameShuffler.h (265198 => 265199)
--- trunk/Source/_javascript_Core/jit/CallFrameShuffler.h 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/_javascript_Core/jit/CallFrameShuffler.h 2020-08-03 16:42:33 UTC (rev 265199)
@@ -35,6 +35,8 @@
namespace JSC {
+class CCallHelpers;
+
class CallFrameShuffler {
WTF_MAKE_FAST_ALLOCATED;
public:
Modified: trunk/Source/WebCore/ChangeLog (265198 => 265199)
--- trunk/Source/WebCore/ChangeLog 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebCore/ChangeLog 2020-08-03 16:42:33 UTC (rev 265199)
@@ -1,3 +1,22 @@
+2020-08-03 Adrian Perez de Castro <ape...@igalia.com>
+
+ Non-unified build fixes, early August 20202 edition
+ https://bugs.webkit.org/show_bug.cgi?id=215082
+
+ Unreviewed build fix.
+
+ No new tests needed.
+
+ * accessibility/AccessibilityRenderObject.cpp: Add missing inclusion of Range.h.
+ * dom/RadioButtonGroups.cpp: Ditto.
+ * editing/Editing.cpp: Ditto.
+ * editing/EditingStyle.cpp: Ditto.
+ * editing/EditorCommand.cpp: Ditto.
+ * editing/FrameSelection.cpp: Ditto.
+ * editing/TypingCommand.cpp: Ditto.
+ * editing/VisiblePosition.cpp: Add missing inclusion of SimpleRange.h.
+ * rendering/HitTestResult.cpp: Add missing inclusion of Range.h.
+
2020-08-03 Antti Koivisto <an...@apple.com>
REGRESSION(r259585) Text decoration color with value currentColor miscomputed in some cases
Modified: trunk/Source/WebCore/accessibility/AccessibilityRenderObject.cpp (265198 => 265199)
--- trunk/Source/WebCore/accessibility/AccessibilityRenderObject.cpp 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebCore/accessibility/AccessibilityRenderObject.cpp 2020-08-03 16:42:33 UTC (rev 265199)
@@ -72,6 +72,7 @@
#include "NodeList.h"
#include "Page.h"
#include "ProgressTracker.h"
+#include "Range.h"
#include "RenderButton.h"
#include "RenderFileUploadControl.h"
#include "RenderHTMLCanvas.h"
Modified: trunk/Source/WebCore/dom/RadioButtonGroups.cpp (265198 => 265199)
--- trunk/Source/WebCore/dom/RadioButtonGroups.cpp 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebCore/dom/RadioButtonGroups.cpp 2020-08-03 16:42:33 UTC (rev 265199)
@@ -22,6 +22,7 @@
#include "RadioButtonGroups.h"
#include "HTMLInputElement.h"
+#include "Range.h"
#include <wtf/WeakHashSet.h>
#include <wtf/WeakPtr.h>
Modified: trunk/Source/WebCore/editing/Editing.cpp (265198 => 265199)
--- trunk/Source/WebCore/editing/Editing.cpp 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebCore/editing/Editing.cpp 2020-08-03 16:42:33 UTC (rev 265199)
@@ -47,6 +47,7 @@
#include "HTMLUListElement.h"
#include "NodeTraversal.h"
#include "PositionIterator.h"
+#include "Range.h"
#include "RenderBlock.h"
#include "RenderElement.h"
#include "RenderTableCell.h"
Modified: trunk/Source/WebCore/editing/EditingStyle.cpp (265198 => 265199)
--- trunk/Source/WebCore/editing/EditingStyle.cpp 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebCore/editing/EditingStyle.cpp 2020-08-03 16:42:33 UTC (rev 265199)
@@ -49,6 +49,7 @@
#include "Node.h"
#include "NodeTraversal.h"
#include "QualifiedName.h"
+#include "Range.h"
#include "RenderElement.h"
#include "RenderStyle.h"
#include "SimpleRange.h"
Modified: trunk/Source/WebCore/editing/EditorCommand.cpp (265198 => 265199)
--- trunk/Source/WebCore/editing/EditorCommand.cpp 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebCore/editing/EditorCommand.cpp 2020-08-03 16:42:33 UTC (rev 265199)
@@ -51,6 +51,7 @@
#include "InsertNestedListCommand.h"
#include "Page.h"
#include "Pasteboard.h"
+#include "Range.h"
#include "RenderBox.h"
#include "ReplaceSelectionCommand.h"
#include "Scrollbar.h"
Modified: trunk/Source/WebCore/editing/FrameSelection.cpp (265198 => 265199)
--- trunk/Source/WebCore/editing/FrameSelection.cpp 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebCore/editing/FrameSelection.cpp 2020-08-03 16:42:33 UTC (rev 265199)
@@ -55,6 +55,7 @@
#include "InlineTextBox.h"
#include "Logging.h"
#include "Page.h"
+#include "Range.h"
#include "RenderLayer.h"
#include "RenderText.h"
#include "RenderTextControl.h"
Modified: trunk/Source/WebCore/editing/TypingCommand.cpp (265198 => 265199)
--- trunk/Source/WebCore/editing/TypingCommand.cpp 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebCore/editing/TypingCommand.cpp 2020-08-03 16:42:33 UTC (rev 265199)
@@ -43,6 +43,7 @@
#include "Logging.h"
#include "MarkupAccumulator.h"
#include "MathMLElement.h"
+#include "Range.h"
#include "RenderElement.h"
#include "StaticRange.h"
#include "TextIterator.h"
Modified: trunk/Source/WebCore/editing/VisiblePosition.cpp (265198 => 265199)
--- trunk/Source/WebCore/editing/VisiblePosition.cpp 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebCore/editing/VisiblePosition.cpp 2020-08-03 16:42:33 UTC (rev 265199)
@@ -39,6 +39,7 @@
#include "Range.h"
#include "RenderBlock.h"
#include "RootInlineBox.h"
+#include "SimpleRange.h"
#include "Text.h"
#include "VisibleUnits.h"
#include <stdio.h>
Modified: trunk/Source/WebCore/rendering/HitTestResult.cpp (265198 => 265199)
--- trunk/Source/WebCore/rendering/HitTestResult.cpp 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebCore/rendering/HitTestResult.cpp 2020-08-03 16:42:33 UTC (rev 265199)
@@ -38,6 +38,7 @@
#include "HTMLTextAreaElement.h"
#include "HTMLVideoElement.h"
#include "PseudoElement.h"
+#include "Range.h"
#include "RenderBlockFlow.h"
#include "RenderImage.h"
#include "RenderInline.h"
Modified: trunk/Source/WebKit/ChangeLog (265198 => 265199)
--- trunk/Source/WebKit/ChangeLog 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebKit/ChangeLog 2020-08-03 16:42:33 UTC (rev 265199)
@@ -1,3 +1,12 @@
+2020-08-03 Adrian Perez de Castro <ape...@igalia.com>
+
+ Non-unified build fixes, early August 20202 edition
+ https://bugs.webkit.org/show_bug.cgi?id=215082
+
+ Unreviewed build fix.
+
+ * WebProcess/WebPage/FindController.h: Add missing inclusion of WebCore/SimpleRange.h.
+
2020-08-02 Darin Adler <da...@apple.com>
Remove some member functions of Range and many calls to createLiveRange
Modified: trunk/Source/WebKit/WebProcess/WebPage/FindController.h (265198 => 265199)
--- trunk/Source/WebKit/WebProcess/WebPage/FindController.h 2020-08-03 16:18:21 UTC (rev 265198)
+++ trunk/Source/WebKit/WebProcess/WebPage/FindController.h 2020-08-03 16:42:33 UTC (rev 265199)
@@ -30,6 +30,7 @@
#include <WebCore/FindOptions.h>
#include <WebCore/IntRect.h>
#include <WebCore/PageOverlay.h>
+#include <WebCore/SimpleRange.h>
#include <wtf/Forward.h>
#include <wtf/Noncopyable.h>
#include <wtf/Vector.h>