Title: [284897] trunk/Source/WebKit
Revision
284897
Author
[email protected]
Date
2021-10-26 14:18:58 -0700 (Tue, 26 Oct 2021)

Log Message

NetworkProcess::updateBundleIdentifier, a testing function, overrides the actual bundleID instead of the override value
https://bugs.webkit.org/show_bug.cgi?id=232327

Reviewed by John Wilander.

No new tests, behavior confirmed by existing App Bound Domains tests.

* NetworkProcess/NetworkProcess.cpp:
(WebKit::NetworkProcess::updateBundleIdentifier):
We should only ever set the override bundleID for testing purposes.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (284896 => 284897)


--- trunk/Source/WebKit/ChangeLog	2021-10-26 21:13:02 UTC (rev 284896)
+++ trunk/Source/WebKit/ChangeLog	2021-10-26 21:18:58 UTC (rev 284897)
@@ -1,3 +1,16 @@
+2021-10-26  Kate Cheney  <[email protected]>
+
+        NetworkProcess::updateBundleIdentifier, a testing function, overrides the actual bundleID instead of the override value
+        https://bugs.webkit.org/show_bug.cgi?id=232327
+
+        Reviewed by John Wilander.
+
+        No new tests, behavior confirmed by existing App Bound Domains tests.
+
+        * NetworkProcess/NetworkProcess.cpp:
+        (WebKit::NetworkProcess::updateBundleIdentifier):
+        We should only ever set the override bundleID for testing purposes.
+
 2021-10-26  Brent Fulgham  <[email protected]>
 
         [AppSSO] Avoid attempting to display a nil view controller

Modified: trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp (284896 => 284897)


--- trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp	2021-10-26 21:13:02 UTC (rev 284896)
+++ trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp	2021-10-26 21:18:58 UTC (rev 284897)
@@ -2783,7 +2783,7 @@
 {
 #if PLATFORM(COCOA)
     WebCore::clearApplicationBundleIdentifierTestingOverride();
-    WebCore::setApplicationBundleIdentifier(bundleIdentifier);
+    WebCore::setApplicationBundleIdentifierOverride(bundleIdentifier);
 #endif
     completionHandler();
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to