Title: [289553] trunk/Source/WebCore
Revision
289553
Author
[email protected]
Date
2022-02-10 10:46:41 -0800 (Thu, 10 Feb 2022)

Log Message

Unreviewed, update BundleResourceLoader WorkQueue identifier

Address Alex's review comment in bug 236062.

* loader/cocoa/BundleResourceLoader.mm:
(WebCore::BundleResourceLoader::loadQueue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (289552 => 289553)


--- trunk/Source/WebCore/ChangeLog	2022-02-10 18:32:30 UTC (rev 289552)
+++ trunk/Source/WebCore/ChangeLog	2022-02-10 18:46:41 UTC (rev 289553)
@@ -1,3 +1,12 @@
+2022-02-10  Tim Nguyen  <[email protected]>
+
+        Unreviewed, update BundleResourceLoader WorkQueue identifier
+
+        Address Alex's review comment in bug 236062.
+
+        * loader/cocoa/BundleResourceLoader.mm:
+        (WebCore::BundleResourceLoader::loadQueue):
+
 2022-02-10  Wenson Hsieh  <[email protected]>
 
         Support `WebPageProxy::replaceSelectionWithPasteboardData()` on iOS

Modified: trunk/Source/WebCore/loader/cocoa/BundleResourceLoader.mm (289552 => 289553)


--- trunk/Source/WebCore/loader/cocoa/BundleResourceLoader.mm	2022-02-10 18:32:30 UTC (rev 289552)
+++ trunk/Source/WebCore/loader/cocoa/BundleResourceLoader.mm	2022-02-10 18:46:41 UTC (rev 289553)
@@ -42,7 +42,7 @@
 
 static WorkQueue& loadQueue()
 {
-    static auto& queue = WorkQueue::create("org.WebCore.BundleResourceLoader", WorkQueue::QOS::Utility).leakRef();
+    static auto& queue = WorkQueue::create("org.WebKit.BundleResourceLoader", WorkQueue::QOS::Utility).leakRef();
     return queue;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to