Title: [289726] trunk/Source
Revision
289726
Author
[email protected]
Date
2022-02-13 22:22:21 -0800 (Sun, 13 Feb 2022)

Log Message

Unreviewed, non-unified build fixes
https://bugs.webkit.org/show_bug.cgi?id=236577


Source/_javascript_Core:

* heap/StructureAlignedMemoryAllocator.cpp: Add missing include.

Source/WebCore:

* Modules/notifications/NotificationEvent.cpp: Missing include.
* platform/graphics/ContentTypeUtilities.cpp: Namespace function.
(WebCore::contentTypeMeetsContainerAndCodecTypeRequirements):
* workers/service/ServiceWorkerGlobalScope.cpp: Missing include.

Source/WebKit:

* UIProcess/Notifications/ServiceWorkerNotificationHandler.h: Forward
declare.
* UIProcess/WebProcessProxy.cpp: Missing include.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (289725 => 289726)


--- trunk/Source/_javascript_Core/ChangeLog	2022-02-14 05:22:55 UTC (rev 289725)
+++ trunk/Source/_javascript_Core/ChangeLog	2022-02-14 06:22:21 UTC (rev 289726)
@@ -1,3 +1,10 @@
+2022-02-13  Lauro Moura  <[email protected]>
+
+        Unreviewed, non-unified build fixes
+        https://bugs.webkit.org/show_bug.cgi?id=236577
+
+        * heap/StructureAlignedMemoryAllocator.cpp: Add missing include.
+
 2022-02-13  Keith Miller  <[email protected]>
 
         Add comment on how StructureMemoryManager grows the free list when there are no free blocks.

Modified: trunk/Source/_javascript_Core/heap/StructureAlignedMemoryAllocator.cpp (289725 => 289726)


--- trunk/Source/_javascript_Core/heap/StructureAlignedMemoryAllocator.cpp	2022-02-14 05:22:55 UTC (rev 289725)
+++ trunk/Source/_javascript_Core/heap/StructureAlignedMemoryAllocator.cpp	2022-02-14 06:22:21 UTC (rev 289726)
@@ -28,6 +28,7 @@
 
 #include "JSCConfig.h"
 #include "MarkedBlock.h"
+#include "StructureID.h"
 
 #include <wtf/OSAllocator.h>
 

Modified: trunk/Source/WebCore/ChangeLog (289725 => 289726)


--- trunk/Source/WebCore/ChangeLog	2022-02-14 05:22:55 UTC (rev 289725)
+++ trunk/Source/WebCore/ChangeLog	2022-02-14 06:22:21 UTC (rev 289726)
@@ -1,3 +1,13 @@
+2022-02-13  Lauro Moura  <[email protected]>
+
+        Unreviewed, non-unified build fixes
+        https://bugs.webkit.org/show_bug.cgi?id=236577
+
+        * Modules/notifications/NotificationEvent.cpp: Missing include.
+        * platform/graphics/ContentTypeUtilities.cpp: Namespace function.
+        (WebCore::contentTypeMeetsContainerAndCodecTypeRequirements):
+        * workers/service/ServiceWorkerGlobalScope.cpp: Missing include.
+
 2022-02-13  Andres Gonzalez  <[email protected]>
 
         Decouple AXObjectCache handleChildrenChanged and postNotification.

Modified: trunk/Source/WebCore/Modules/notifications/NotificationEvent.cpp (289725 => 289726)


--- trunk/Source/WebCore/Modules/notifications/NotificationEvent.cpp	2022-02-14 05:22:55 UTC (rev 289725)
+++ trunk/Source/WebCore/Modules/notifications/NotificationEvent.cpp	2022-02-14 06:22:21 UTC (rev 289726)
@@ -26,6 +26,8 @@
 #include "config.h"
 #include "NotificationEvent.h"
 
+#include <wtf/IsoMallocInlines.h>
+
 #if ENABLE(NOTIFICATION_EVENT)
 
 namespace WebCore {

Modified: trunk/Source/WebCore/platform/graphics/ContentTypeUtilities.cpp (289725 => 289726)


--- trunk/Source/WebCore/platform/graphics/ContentTypeUtilities.cpp	2022-02-14 05:22:55 UTC (rev 289725)
+++ trunk/Source/WebCore/platform/graphics/ContentTypeUtilities.cpp	2022-02-14 06:22:21 UTC (rev 289726)
@@ -39,8 +39,8 @@
     if (!allowedMediaCodecTypes)
         return true;
 
-    return allOf(type.codecs(), [&] (auto& codec) {
-        return anyOf(*allowedMediaCodecTypes, [&] (auto& allowedCodec) {
+    return WTF::allOf(type.codecs(), [&] (auto& codec) {
+        return WTF::anyOf(*allowedMediaCodecTypes, [&] (auto& allowedCodec) {
             return codec.startsWith(allowedCodec);
         });
     });

Modified: trunk/Source/WebCore/workers/service/ServiceWorkerGlobalScope.cpp (289725 => 289726)


--- trunk/Source/WebCore/workers/service/ServiceWorkerGlobalScope.cpp	2022-02-14 05:22:55 UTC (rev 289725)
+++ trunk/Source/WebCore/workers/service/ServiceWorkerGlobalScope.cpp	2022-02-14 06:22:21 UTC (rev 289726)
@@ -30,6 +30,7 @@
 
 #include "Document.h"
 #include "EventLoop.h"
+#include "EventNames.h"
 #include "ExtendableEvent.h"
 #include "Frame.h"
 #include "FrameLoader.h"

Modified: trunk/Source/WebKit/ChangeLog (289725 => 289726)


--- trunk/Source/WebKit/ChangeLog	2022-02-14 05:22:55 UTC (rev 289725)
+++ trunk/Source/WebKit/ChangeLog	2022-02-14 06:22:21 UTC (rev 289726)
@@ -1,3 +1,12 @@
+2022-02-13  Lauro Moura  <[email protected]>
+
+        Unreviewed, non-unified build fixes
+        https://bugs.webkit.org/show_bug.cgi?id=236577
+
+        * UIProcess/Notifications/ServiceWorkerNotificationHandler.h: Forward
+        declare.
+        * UIProcess/WebProcessProxy.cpp: Missing include.
+
 2022-02-13  Brady Eidson  <[email protected]>
 
         Implement ServiceWorkerRegistration.showNotification()

Modified: trunk/Source/WebKit/UIProcess/Notifications/ServiceWorkerNotificationHandler.h (289725 => 289726)


--- trunk/Source/WebKit/UIProcess/Notifications/ServiceWorkerNotificationHandler.h	2022-02-14 05:22:55 UTC (rev 289725)
+++ trunk/Source/WebKit/UIProcess/Notifications/ServiceWorkerNotificationHandler.h	2022-02-14 06:22:21 UTC (rev 289726)
@@ -32,6 +32,8 @@
 
 namespace WebKit {
 
+class WebsiteDataStore;
+
 class ServiceWorkerNotificationHandler final : public NotificationManagerMessageHandler {
 public:
     static ServiceWorkerNotificationHandler& singleton();

Modified: trunk/Source/WebKit/UIProcess/WebProcessProxy.cpp (289725 => 289726)


--- trunk/Source/WebKit/UIProcess/WebProcessProxy.cpp	2022-02-14 05:22:55 UTC (rev 289725)
+++ trunk/Source/WebKit/UIProcess/WebProcessProxy.cpp	2022-02-14 06:22:21 UTC (rev 289726)
@@ -33,6 +33,7 @@
 #include "DownloadProxyMap.h"
 #include "LoadParameters.h"
 #include "Logging.h"
+#include "NotificationManagerMessageHandlerMessages.h"
 #include "ProvisionalPageProxy.h"
 #include "ServiceWorkerNotificationHandler.h"
 #include "SpeechRecognitionPermissionRequest.h"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to