⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 284897 in webkit


Ignore:
Timestamp:
Oct 26, 2021, 2:18:58 PM (5 years ago)
Author:
Kate Cheney
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.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r284896 r284897  
     12021-10-26  Kate Cheney  <katherine_cheney@apple.com>
     2
     3        NetworkProcess::updateBundleIdentifier, a testing function, overrides the actual bundleID instead of the override value
     4        https://bugs.webkit.org/show_bug.cgi?id=232327
     5
     6        Reviewed by John Wilander.
     7
     8        No new tests, behavior confirmed by existing App Bound Domains tests.
     9
     10        * NetworkProcess/NetworkProcess.cpp:
     11        (WebKit::NetworkProcess::updateBundleIdentifier):
     12        We should only ever set the override bundleID for testing purposes.
     13
    1142021-10-26  Brent Fulgham  <bfulgham@apple.com>
    215
  • trunk/Source/WebKit/NetworkProcess/NetworkProcess.cpp

    r284142 r284897  
    27842784#if PLATFORM(COCOA)
    27852785    WebCore::clearApplicationBundleIdentifierTestingOverride();
    2786     WebCore::setApplicationBundleIdentifier(bundleIdentifier);
     2786    WebCore::setApplicationBundleIdentifierOverride(bundleIdentifier);
    27872787#endif
    27882788    completionHandler();
Note: See TracChangeset for help on using the changeset viewer.