Changeset 243877 in webkit
- Timestamp:
- Apr 4, 2019, 10:36:20 AM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebProcessPool.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r243865 r243877 1 2019-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 1 14 2019-04-04 Miguel Gomez <magomez@igalia.com> 2 15 -
trunk/Source/WebKit/UIProcess/WebProcessPool.h
r243711 r243877 790 790 HashMap<WebCore::ProcessIdentifier, std::unique_ptr<ProcessAssertion>> m_processesWithUploads; 791 791 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 792 796 bool m_isDelayedWebProcessLaunchDisabled { false }; 797 #endif 793 798 }; 794 799
Note:
See TracChangeset
for help on using the changeset viewer.