Changeset 233431 in webkit


Ignore:
Timestamp:
Jul 2, 2018 1:50:17 PM (6 years ago)
Author:
sihui_liu@apple.com
Message:

Remove InitWebCoreThreadSystemInterface() in WKProcessPool _initWithConfiguration
https://bugs.webkit.org/show_bug.cgi?id=187252

Reviewed by Dan Bernstein.

Clean up after <rdar://problem/15256572>.

  • UIProcess/API/Cocoa/WKProcessGroup.mm:

(-[WKProcessGroup initWithInjectedBundleURL:]):

  • UIProcess/API/Cocoa/WKProcessPool.mm:

(-[WKProcessPool _initWithConfiguration:]):

Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r233423 r233431  
     12018-07-02  Sihui Liu  <sihui_liu@apple.com>
     2
     3        Remove InitWebCoreThreadSystemInterface() in WKProcessPool _initWithConfiguration
     4        https://bugs.webkit.org/show_bug.cgi?id=187252
     5
     6        Reviewed by Dan Bernstein.
     7
     8        Clean up after <rdar://problem/15256572>.
     9
     10        * UIProcess/API/Cocoa/WKProcessGroup.mm:
     11        (-[WKProcessGroup initWithInjectedBundleURL:]):
     12        * UIProcess/API/Cocoa/WKProcessPool.mm:
     13        (-[WKProcessPool _initWithConfiguration:]):
     14
    1152018-07-02  Zan Dobersek  <zdobersek@igalia.com>
    216
  • trunk/Source/WebKit/UIProcess/API/Cocoa/WKProcessGroup.mm

    r232520 r233431  
    186186        return nil;
    187187
    188 #if PLATFORM(IOS)
    189     // FIXME: Remove once <rdar://problem/15256572> is fixed.
    190     InitWebCoreThreadSystemInterface();
    191 #endif
    192 
    193188    auto configuration = API::ProcessPoolConfiguration::createWithLegacyOptions();
    194189    configuration->setInjectedBundlePath(bundleURL ? String(bundleURL.path) : String());
  • trunk/Source/WebKit/UIProcess/API/Cocoa/WKProcessPool.mm

    r233240 r233431  
    7474    if (!(self = [super init]))
    7575        return nil;
    76 
    77 #if PLATFORM(IOS)
    78     // FIXME: Remove once <rdar://problem/15256572> is fixed.
    79     InitWebCoreThreadSystemInterface();
    80 #endif
    8176
    8277    API::Object::constructInWrapper<WebKit::WebProcessPool>(self, *configuration->_processPoolConfiguration);
Note: See TracChangeset for help on using the changeset viewer.