Title: [254327] trunk/Source
Revision
254327
Author
[email protected]
Date
2020-01-09 22:51:56 -0800 (Thu, 09 Jan 2020)

Log Message

Fix various non-unified build issues introduced since r253538
https://bugs.webkit.org/show_bug.cgi?id=205996

Reviewed by Youenn Fablet.

Source/_javascript_Core:

* bytecode/ExecutableToCodeBlockEdge.cpp: Add missing inclusion of JSObjectInlines.h and
StructureInlines.h
* dfg/DFGVariableEvent.cpp: Add missing inclusion of OperandsInlines.h
* runtime/NarrowingNumberPredictionFuzzerAgent.cpp: Add missing inclusion of CodeBlock.h
* runtime/WideningNumberPredictionFuzzerAgent.cpp: Ditto.
* wasm/WasmOperations.cpp: Add missing inclusion of ButterflyInlines.h

Source/WebCore:

No new tests needed.

* dom/UserGestureIndicator.cpp: Add missing inclusion of DOMWindow.h
* html/HTMLDialogElement.cpp:
(WebCore::HTMLDialogElement::parseAttribute): Add missing namespace prefix to HTMLNames::openAttr.
(WebCore::HTMLDialogElement::toggleOpen): Ditto.
* page/Page.cpp: Add missing inclusion of MediaRecorderProvider.h
* page/PageConfiguration.h: Add missing inclusion of wtf/Forward.h and wtf/Vector.h

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (254326 => 254327)


--- trunk/Source/_javascript_Core/ChangeLog	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-01-10 06:51:56 UTC (rev 254327)
@@ -1,3 +1,17 @@
+2020-01-10  Adrian Perez de Castro  <[email protected]>
+
+        Fix various non-unified build issues introduced since r253538
+        https://bugs.webkit.org/show_bug.cgi?id=205996
+
+        Reviewed by Youenn Fablet.
+
+        * bytecode/ExecutableToCodeBlockEdge.cpp: Add missing inclusion of JSObjectInlines.h and
+        StructureInlines.h
+        * dfg/DFGVariableEvent.cpp: Add missing inclusion of OperandsInlines.h
+        * runtime/NarrowingNumberPredictionFuzzerAgent.cpp: Add missing inclusion of CodeBlock.h
+        * runtime/WideningNumberPredictionFuzzerAgent.cpp: Ditto.
+        * wasm/WasmOperations.cpp: Add missing inclusion of ButterflyInlines.h
+
 2020-01-09  Commit Queue  <[email protected]>
 
         Unreviewed, rolling out r254234.

Modified: trunk/Source/_javascript_Core/bytecode/ExecutableToCodeBlockEdge.cpp (254326 => 254327)


--- trunk/Source/_javascript_Core/bytecode/ExecutableToCodeBlockEdge.cpp	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/_javascript_Core/bytecode/ExecutableToCodeBlockEdge.cpp	2020-01-10 06:51:56 UTC (rev 254327)
@@ -28,6 +28,8 @@
 
 #include "CodeBlock.h"
 #include "IsoCellSetInlines.h"
+#include "JSObjectInlines.h"
+#include "StructureInlines.h"
 
 namespace JSC {
 

Modified: trunk/Source/_javascript_Core/dfg/DFGVariableEvent.cpp (254326 => 254327)


--- trunk/Source/_javascript_Core/dfg/DFGVariableEvent.cpp	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/_javascript_Core/dfg/DFGVariableEvent.cpp	2020-01-10 06:51:56 UTC (rev 254327)
@@ -31,6 +31,7 @@
 #include "FPRInfo.h"
 #include "GPRInfo.h"
 #include "JSCInlines.h"
+#include "OperandsInlines.h"
 
 namespace JSC { namespace DFG {
 

Modified: trunk/Source/_javascript_Core/runtime/NarrowingNumberPredictionFuzzerAgent.cpp (254326 => 254327)


--- trunk/Source/_javascript_Core/runtime/NarrowingNumberPredictionFuzzerAgent.cpp	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/_javascript_Core/runtime/NarrowingNumberPredictionFuzzerAgent.cpp	2020-01-10 06:51:56 UTC (rev 254327)
@@ -26,6 +26,8 @@
 #include "config.h"
 #include "NarrowingNumberPredictionFuzzerAgent.h"
 
+#include "CodeBlock.h"
+
 namespace JSC {
 
 NarrowingNumberPredictionFuzzerAgent::NarrowingNumberPredictionFuzzerAgent(VM& vm)

Modified: trunk/Source/_javascript_Core/runtime/WideningNumberPredictionFuzzerAgent.cpp (254326 => 254327)


--- trunk/Source/_javascript_Core/runtime/WideningNumberPredictionFuzzerAgent.cpp	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/_javascript_Core/runtime/WideningNumberPredictionFuzzerAgent.cpp	2020-01-10 06:51:56 UTC (rev 254327)
@@ -26,6 +26,8 @@
 #include "config.h"
 #include "WideningNumberPredictionFuzzerAgent.h"
 
+#include "CodeBlock.h"
+
 namespace JSC {
 
 WideningNumberPredictionFuzzerAgent::WideningNumberPredictionFuzzerAgent(VM& vm)

Modified: trunk/Source/_javascript_Core/wasm/WasmOperations.cpp (254326 => 254327)


--- trunk/Source/_javascript_Core/wasm/WasmOperations.cpp	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/_javascript_Core/wasm/WasmOperations.cpp	2020-01-10 06:51:56 UTC (rev 254327)
@@ -28,6 +28,7 @@
 
 #if ENABLE(WEBASSEMBLY)
 
+#include "ButterflyInlines.h"
 #include "FrameTracers.h"
 #include "IteratorOperations.h"
 #include "JITExceptions.h"

Modified: trunk/Source/WebCore/ChangeLog (254326 => 254327)


--- trunk/Source/WebCore/ChangeLog	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/WebCore/ChangeLog	2020-01-10 06:51:56 UTC (rev 254327)
@@ -1,3 +1,19 @@
+2020-01-10  Adrian Perez de Castro  <[email protected]>
+
+        Fix various non-unified build issues introduced since r253538
+        https://bugs.webkit.org/show_bug.cgi?id=205996
+
+        Reviewed by Youenn Fablet.
+
+        No new tests needed.
+
+        * dom/UserGestureIndicator.cpp: Add missing inclusion of DOMWindow.h
+        * html/HTMLDialogElement.cpp:
+        (WebCore::HTMLDialogElement::parseAttribute): Add missing namespace prefix to HTMLNames::openAttr.
+        (WebCore::HTMLDialogElement::toggleOpen): Ditto.
+        * page/Page.cpp: Add missing inclusion of MediaRecorderProvider.h
+        * page/PageConfiguration.h: Add missing inclusion of wtf/Forward.h and wtf/Vector.h
+
 2020-01-09  Fujii Hironori  <[email protected]>
 
         [Win] Use ComplexTextController instead of UniscribeController

Modified: trunk/Source/WebCore/dom/UserGestureIndicator.cpp (254326 => 254327)


--- trunk/Source/WebCore/dom/UserGestureIndicator.cpp	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/WebCore/dom/UserGestureIndicator.cpp	2020-01-10 06:51:56 UTC (rev 254327)
@@ -26,6 +26,7 @@
 #include "config.h"
 #include "UserGestureIndicator.h"
 
+#include "DOMWindow.h"
 #include "Document.h"
 #include "Frame.h"
 #include "ResourceLoadObserver.h"

Modified: trunk/Source/WebCore/html/HTMLDialogElement.cpp (254326 => 254327)


--- trunk/Source/WebCore/html/HTMLDialogElement.cpp	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/WebCore/html/HTMLDialogElement.cpp	2020-01-10 06:51:56 UTC (rev 254327)
@@ -90,7 +90,7 @@
 
 void HTMLDialogElement::parseAttribute(const QualifiedName& name, const AtomString& value)
 {
-    if (name == openAttr) {
+    if (name == HTMLNames::openAttr) {
         m_isOpen = !value.isNull();
         return;
     }
@@ -101,7 +101,7 @@
 void HTMLDialogElement::toggleOpen()
 {
     m_isOpen = !m_isOpen;
-    setAttributeWithoutSynchronization(openAttr, m_isOpen ? emptyAtom() : nullAtom());
+    setAttributeWithoutSynchronization(HTMLNames::openAttr, m_isOpen ? emptyAtom() : nullAtom());
 }
 
 }

Modified: trunk/Source/WebCore/page/Page.cpp (254326 => 254327)


--- trunk/Source/WebCore/page/Page.cpp	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/WebCore/page/Page.cpp	2020-01-10 06:51:56 UTC (rev 254327)
@@ -74,6 +74,7 @@
 #include "Logging.h"
 #include "LowPowerModeNotifier.h"
 #include "MediaCanStartListener.h"
+#include "MediaRecorderProvider.h"
 #include "Navigator.h"
 #include "PageConfiguration.h"
 #include "PageConsoleClient.h"

Modified: trunk/Source/WebCore/page/PageConfiguration.h (254326 => 254327)


--- trunk/Source/WebCore/page/PageConfiguration.h	2020-01-10 05:23:32 UTC (rev 254326)
+++ trunk/Source/WebCore/page/PageConfiguration.h	2020-01-10 06:51:56 UTC (rev 254327)
@@ -26,10 +26,12 @@
 #pragma once
 
 #include <pal/SessionID.h>
+#include <wtf/Forward.h>
 #include <wtf/Noncopyable.h>
 #include <wtf/Optional.h>
 #include <wtf/RefPtr.h>
 #include <wtf/UniqueRef.h>
+#include <wtf/Vector.h>
 
 #if ENABLE(APPLICATION_MANIFEST)
 #include "ApplicationManifest.h"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to