Title: [289195] trunk/Source/WebCore
- Revision
- 289195
- Author
- [email protected]
- Date
- 2022-02-06 19:58:03 -0800 (Sun, 06 Feb 2022)
Log Message
[GTK][WPE] Unreviewed build fix for Debian Stable after r288872
https://bugs.webkit.org/show_bug.cgi?id=236215
* dom/AbortSignal.cpp:
(WebCore::AbortSignal::timeout):
* platform/graphics/PlatformDisplay.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (289194 => 289195)
--- trunk/Source/WebCore/ChangeLog 2022-02-07 03:44:49 UTC (rev 289194)
+++ trunk/Source/WebCore/ChangeLog 2022-02-07 03:58:03 UTC (rev 289195)
@@ -1,3 +1,12 @@
+2022-02-06 Diego Pino Garcia <[email protected]>
+
+ [GTK][WPE] Unreviewed build fix for Debian Stable after r288872
+ https://bugs.webkit.org/show_bug.cgi?id=236215
+
+ * dom/AbortSignal.cpp:
+ (WebCore::AbortSignal::timeout):
+ * platform/graphics/PlatformDisplay.cpp:
+
2022-02-06 Sam Weinig <[email protected]>
Update serialization of rgb() functions with none components to latest spec
Modified: trunk/Source/WebCore/dom/AbortSignal.cpp (289194 => 289195)
--- trunk/Source/WebCore/dom/AbortSignal.cpp 2022-02-07 03:44:49 UTC (rev 289194)
+++ trunk/Source/WebCore/dom/AbortSignal.cpp 2022-02-07 03:58:03 UTC (rev 289195)
@@ -34,6 +34,7 @@
#include "JSDOMException.h"
#include "ScriptExecutionContext.h"
#include <_javascript_Core/Exception.h>
+#include <_javascript_Core/JSCast.h>
#include <wtf/IsoMallocInlines.h>
namespace WebCore {
@@ -62,7 +63,7 @@
auto action = "" context) mutable {
signal->setHasActiveTimeoutTimer(false);
- auto* globalObject = jsCast<JSDOMGlobalObject*>(context.globalObject());
+ auto* globalObject = JSC::jsCast<JSDOMGlobalObject*>(context.globalObject());
if (!globalObject)
return;
Modified: trunk/Source/WebCore/platform/graphics/PlatformDisplay.cpp (289194 => 289195)
--- trunk/Source/WebCore/platform/graphics/PlatformDisplay.cpp 2022-02-07 03:44:49 UTC (rev 289194)
+++ trunk/Source/WebCore/platform/graphics/PlatformDisplay.cpp 2022-02-07 03:58:03 UTC (rev 289195)
@@ -84,6 +84,10 @@
#include <wtf/glib/GUniquePtr.h>
#endif
+#if USE(GLIB)
+#include <wtf/glib/GRefPtr.h>
+#endif
+
namespace WebCore {
std::unique_ptr<PlatformDisplay> PlatformDisplay::createPlatformDisplay()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes