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

Changeset 243877 in webkit


Ignore:
Timestamp:
Apr 4, 2019, 10:36:20 AM (7 years ago)
Author:
Chris Dumez
Message:

Temporarily disable delayed WebProcess launch on iOS to address PLT regression
https://bugs.webkit.org/show_bug.cgi?id=196604
<rdar://problem/49074131>

Reviewed by Geoffrey Garen.

Temporarily disable delayed WebProcess launch on iOS to address PLT regression. This
is while I figure out how to enable this on iOS without regressed PLT.

  • UIProcess/WebProcessPool.h:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r243865 r243877  
     12019-04-04  Chris Dumez  <cdumez@apple.com>
     2
     3        Temporarily disable delayed WebProcess launch on iOS to address PLT regression
     4        https://bugs.webkit.org/show_bug.cgi?id=196604
     5        <rdar://problem/49074131>
     6
     7        Reviewed by Geoffrey Garen.
     8
     9        Temporarily disable delayed WebProcess launch on iOS to address PLT regression. This
     10        is while I figure out how to enable this on iOS without regressed PLT.
     11
     12        * UIProcess/WebProcessPool.h:
     13
    1142019-04-04  Miguel Gomez  <magomez@igalia.com>
    215
  • trunk/Source/WebKit/UIProcess/WebProcessPool.h

    r243711 r243877  
    790790    HashMap<WebCore::ProcessIdentifier, std::unique_ptr<ProcessAssertion>> m_processesWithUploads;
    791791    std::unique_ptr<ProcessAssertion> m_uiProcessUploadAssertion;
     792#if PLATFORM(IOS)
     793    // FIXME: Delayed process launch is currently disabled on iOS for performance reasons (rdar://problem/49074131).
     794    bool m_isDelayedWebProcessLaunchDisabled { true };
     795#else
    792796    bool m_isDelayedWebProcessLaunchDisabled { false };
     797#endif
    793798};
    794799
Note: See TracChangeset for help on using the changeset viewer.