Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (282079 => 282080)
--- trunk/Source/_javascript_Core/ChangeLog 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/_javascript_Core/ChangeLog 2021-09-07 12:00:47 UTC (rev 282080)
@@ -1,3 +1,12 @@
+2021-09-07 Adrian Perez de Castro <[email protected]>
+
+ Non-unified build fixes, early September 2021 edition
+ https://bugs.webkit.org/show_bug.cgi?id=229983
+
+ Unreviewed non-unified build fixes.
+
+ * runtime/TemporalTimeZone.cpp: Add missing JSObjectInlines.h header.
+
2021-09-03 Yusuke Suzuki <[email protected]>
[JSC] Make EnumeratorNextUpdateIndexAndMode clobberizing rule precise
Modified: trunk/Source/_javascript_Core/runtime/TemporalTimeZone.cpp (282079 => 282080)
--- trunk/Source/_javascript_Core/runtime/TemporalTimeZone.cpp 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/_javascript_Core/runtime/TemporalTimeZone.cpp 2021-09-07 12:00:47 UTC (rev 282080)
@@ -27,6 +27,7 @@
#include "TemporalTimeZone.h"
#include "ISO8601.h"
+#include "JSObjectInlines.h"
namespace JSC {
Modified: trunk/Source/WebCore/ChangeLog (282079 => 282080)
--- trunk/Source/WebCore/ChangeLog 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebCore/ChangeLog 2021-09-07 12:00:47 UTC (rev 282080)
@@ -1,3 +1,21 @@
+2021-09-07 Adrian Perez de Castro <[email protected]>
+
+ Non-unified build fixes, early September 2021 edition
+ https://bugs.webkit.org/show_bug.cgi?id=229983
+
+ Unreviewed non-unified build fixes.
+
+ * rendering/ReferencedSVGResources.cpp: Add missing wtf/IsoMallocInlines.h header.
+ * rendering/ReferencedSVGResources.h: Add missing wtf/IsoMalloc.h and wtf/text/AtomString.h
+ headers, and missing forward declarations for the Document and RenderElement classes.
+ * rendering/RenderView.cpp:
+ (WebCore::RenderView::shouldPaintBaseBackground const): Add missing HTMLNames:: namespace
+ prefix to usage of HTMLNames::frameTag member.
+ * rendering/TextPainter.cpp: Add missing LayoutIntegrationInlineContent.h header.
+ * workers/Worker.h: Add missing wtf/Deque.h header.
+ * workers/service/ServiceWorkerRegistrationData.cpp: Add missing wtf/CrossThreadCopier.h
+ header.
+
2021-09-01 Sergio Villar Senin <[email protected]>
[css-flexbox] Add support for left & right css-align-3 positional alignment properties
Modified: trunk/Source/WebCore/rendering/ReferencedSVGResources.cpp (282079 => 282080)
--- trunk/Source/WebCore/rendering/ReferencedSVGResources.cpp 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebCore/rendering/ReferencedSVGResources.cpp 2021-09-07 12:00:47 UTC (rev 282080)
@@ -34,6 +34,8 @@
#include "SVGClipPathElement.h"
#include "SVGResourceElementClient.h"
+#include <wtf/IsoMallocInlines.h>
+
namespace WebCore {
class CSSSVGResourceElementClient final : public SVGResourceElementClient {
Modified: trunk/Source/WebCore/rendering/ReferencedSVGResources.h (282079 => 282080)
--- trunk/Source/WebCore/rendering/ReferencedSVGResources.h 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebCore/rendering/ReferencedSVGResources.h 2021-09-07 12:00:47 UTC (rev 282080)
@@ -27,13 +27,17 @@
#include <wtf/FastMalloc.h>
#include <wtf/HashMap.h>
+#include <wtf/IsoMalloc.h>
#include <wtf/text/AtomString.h>
+#include <wtf/text/AtomStringHash.h>
namespace WebCore {
class CSSSVGResourceElementClient;
+class Document;
class ReferenceClipPathOperation;
class ReferenceFilterOperation;
+class RenderElement;
class RenderSVGResourceClipper;
class RenderSVGResourceFilter;
class RenderStyle;
Modified: trunk/Source/WebCore/rendering/RenderView.cpp (282079 => 282080)
--- trunk/Source/WebCore/rendering/RenderView.cpp 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebCore/rendering/RenderView.cpp 2021-09-07 12:00:47 UTC (rev 282080)
@@ -605,7 +605,7 @@
if (!ownerElement)
return !frameView.isTransparent();
- if (ownerElement->hasTagName(frameTag))
+ if (ownerElement->hasTagName(HTMLNames::frameTag))
return true;
// Locate the <body> element using the DOM. This is easier than trying
Modified: trunk/Source/WebCore/rendering/TextPainter.cpp (282079 => 282080)
--- trunk/Source/WebCore/rendering/TextPainter.cpp 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebCore/rendering/TextPainter.cpp 2021-09-07 12:00:47 UTC (rev 282080)
@@ -27,6 +27,7 @@
#include "FilterOperations.h"
#include "GraphicsContext.h"
#include "HTMLParserIdioms.h"
+#include "LayoutIntegrationInlineContent.h"
#include "LegacyInlineTextBox.h"
#include "RenderCombineText.h"
#include "RenderLayer.h"
Modified: trunk/Source/WebCore/workers/Worker.h (282079 => 282080)
--- trunk/Source/WebCore/workers/Worker.h 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebCore/workers/Worker.h 2021-09-07 12:00:47 UTC (rev 282080)
@@ -34,6 +34,7 @@
#include "WorkerScriptLoaderClient.h"
#include "WorkerType.h"
#include <_javascript_Core/RuntimeFlags.h>
+#include <wtf/Deque.h>
#include <wtf/MonotonicTime.h>
#include <wtf/text/AtomStringHash.h>
Modified: trunk/Source/WebCore/workers/service/ServiceWorkerRegistrationData.cpp (282079 => 282080)
--- trunk/Source/WebCore/workers/service/ServiceWorkerRegistrationData.cpp 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebCore/workers/service/ServiceWorkerRegistrationData.cpp 2021-09-07 12:00:47 UTC (rev 282080)
@@ -28,6 +28,8 @@
#if ENABLE(SERVICE_WORKER)
+#include <wtf/CrossThreadCopier.h>
+
namespace WebCore {
ServiceWorkerRegistrationData ServiceWorkerRegistrationData::isolatedCopy() const &
Modified: trunk/Source/WebKit/ChangeLog (282079 => 282080)
--- trunk/Source/WebKit/ChangeLog 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebKit/ChangeLog 2021-09-07 12:00:47 UTC (rev 282080)
@@ -1,3 +1,19 @@
+2021-09-07 Adrian Perez de Castro <[email protected]>
+
+ Non-unified build fixes, early September 2021 edition
+ https://bugs.webkit.org/show_bug.cgi?id=229983
+
+ Unreviewed non-unified build fixes.
+
+ * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClient.h: Add missing
+ WebCore/PrivateClickMeasurement.h header.
+ * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.cpp:
+ (WebKit::PCM::ClientImpl::loadFromNetwork): Sprinkle missing WebCore:: namespace prefixes.
+ * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.h: Add missing
+ wtf/WeakPtr.h header.
+ * NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementNetworkLoader.cpp: Add
+ missing WebCore/RuntimeApplicationChecks.h header.
+
2021-09-06 Dmitry Kalinkin <[email protected]>
Fix WebKitGTK build on MacOS
Modified: trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClient.h (282079 => 282080)
--- trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClient.h 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClient.h 2021-09-07 12:00:47 UTC (rev 282080)
@@ -25,6 +25,7 @@
#pragma once
+#include <WebCore/PrivateClickMeasurement.h>
#include <wtf/JSONValues.h>
namespace JSC {
Modified: trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.cpp (282079 => 282080)
--- trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.cpp 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.cpp 2021-09-07 12:00:47 UTC (rev 282080)
@@ -40,7 +40,7 @@
void ClientImpl::loadFromNetwork(URL&& url, RefPtr<JSON::Object>&& jsonPayload, WebCore::PrivateClickMeasurement::PcmDataCarried pcmDataCarried, NetworkLoadCallback&& completionHandler)
{
if (!featureEnabled())
- return completionHandler(ResourceError(ResourceError::Type::Cancellation), { }, { });
+ return completionHandler(WebCore::ResourceError(WebCore::ResourceError::Type::Cancellation), { }, { });
PrivateClickMeasurementNetworkLoader::start(*m_networkSession, WTFMove(url), WTFMove(jsonPayload), pcmDataCarried, WTFMove(completionHandler));
}
Modified: trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.h (282079 => 282080)
--- trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.h 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementClientImpl.h 2021-09-07 12:00:47 UTC (rev 282080)
@@ -28,6 +28,7 @@
#include "PrivateClickMeasurementClient.h"
#include <pal/SessionID.h>
#include <wtf/FastMalloc.h>
+#include <wtf/WeakPtr.h>
namespace WebKit {
Modified: trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementNetworkLoader.cpp (282079 => 282080)
--- trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementNetworkLoader.cpp 2021-09-07 11:40:56 UTC (rev 282079)
+++ trunk/Source/WebKit/NetworkProcess/PrivateClickMeasurement/PrivateClickMeasurementNetworkLoader.cpp 2021-09-07 12:00:47 UTC (rev 282080)
@@ -30,6 +30,7 @@
#include "NetworkSession.h"
#include <WebCore/HTTPHeaderValues.h>
#include <WebCore/MIMETypeRegistry.h>
+#include <WebCore/RuntimeApplicationChecks.h>
#include <WebCore/TextResourceDecoder.h>
#include <wtf/JSONValues.h>