Title: [268764] trunk/Source/WebCore
Revision
268764
Author
don.olmst...@sony.com
Date
2020-10-20 15:06:33 -0700 (Tue, 20 Oct 2020)

Log Message

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

Unreviewed build fix.

No new tests. No change in behavior.


* bindings/js/JSEventCustom.cpp:
(WebCore::toJS):
* display/DisplayTreeBuilder.h:
* layout/integration/LayoutIntegrationLineLayout.cpp:
* workers/WorkerOrWorkletScriptController.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (268763 => 268764)


--- trunk/Source/WebCore/ChangeLog	2020-10-20 22:01:04 UTC (rev 268763)
+++ trunk/Source/WebCore/ChangeLog	2020-10-20 22:06:33 UTC (rev 268764)
@@ -1,3 +1,18 @@
+2020-10-20  Don Olmstead  <don.olmst...@sony.com>
+
+        Non-unified build fixes, late October 2020 edition
+        https://bugs.webkit.org/show_bug.cgi?id=217983
+
+        Unreviewed build fix.
+
+        No new tests. No change in behavior.
+
+        * bindings/js/JSEventCustom.cpp:
+        (WebCore::toJS):
+        * display/DisplayTreeBuilder.h:
+        * layout/integration/LayoutIntegrationLineLayout.cpp:
+        * workers/WorkerOrWorkletScriptController.h:
+
 2020-10-20  Sihui Liu  <sihui_...@apple.com>
 
         Add stubs for SpeechRecognition

Modified: trunk/Source/WebCore/bindings/js/JSEventCustom.cpp (268763 => 268764)


--- trunk/Source/WebCore/bindings/js/JSEventCustom.cpp	2020-10-20 22:01:04 UTC (rev 268763)
+++ trunk/Source/WebCore/bindings/js/JSEventCustom.cpp	2020-10-20 22:06:33 UTC (rev 268764)
@@ -30,10 +30,11 @@
 #include "JSEvent.h"
 
 #include "JSDOMWrapperCache.h"
+#include <_javascript_Core/JSCJSValue.h>
 
 namespace WebCore {
 
-JSValue toJS(JSC::JSGlobalObject* lexicalGlobalObject, JSDOMGlobalObject* globalObject, Event& event)
+JSC::JSValue toJS(JSC::JSGlobalObject* lexicalGlobalObject, JSDOMGlobalObject* globalObject, Event& event)
 {
     return wrap(lexicalGlobalObject, globalObject, event);
 }

Modified: trunk/Source/WebCore/display/DisplayTreeBuilder.h (268763 => 268764)


--- trunk/Source/WebCore/display/DisplayTreeBuilder.h	2020-10-20 22:01:04 UTC (rev 268763)
+++ trunk/Source/WebCore/display/DisplayTreeBuilder.h	2020-10-20 22:06:33 UTC (rev 268764)
@@ -29,6 +29,10 @@
 
 #include <wtf/IsoMalloc.h>
 
+#if ENABLE(TREE_DEBUGGING)
+#include <wtf/Forward.h>
+#endif
+
 namespace WebCore {
 
 class LayoutSize;

Modified: trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp (268763 => 268764)


--- trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp	2020-10-20 22:01:04 UTC (rev 268763)
+++ trunk/Source/WebCore/layout/integration/LayoutIntegrationLineLayout.cpp	2020-10-20 22:06:33 UTC (rev 268764)
@@ -39,6 +39,7 @@
 #include "LayoutBoxGeometry.h"
 #include "LayoutIntegrationCoverage.h"
 #include "LayoutIntegrationPagination.h"
+#include "LayoutReplacedBox.h"
 #include "LayoutTreeBuilder.h"
 #include "PaintInfo.h"
 #include "RenderBlockFlow.h"

Modified: trunk/Source/WebCore/workers/WorkerOrWorkletScriptController.h (268763 => 268764)


--- trunk/Source/WebCore/workers/WorkerOrWorkletScriptController.h	2020-10-20 22:01:04 UTC (rev 268763)
+++ trunk/Source/WebCore/workers/WorkerOrWorkletScriptController.h	2020-10-20 22:06:33 UTC (rev 268764)
@@ -27,6 +27,10 @@
 
 #include <_javascript_Core/JSRunLoopTimer.h>
 
+namespace JSC {
+class JSGlobalObject;
+}
+
 namespace WebCore {
 
 class WorkerOrWorkletScriptController {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to