Session restore on macOS should restore fewer tabs. |
|
Issue description
The current logic for session restore relies on system memory pressure signals to stop loading tabs:
"""
void TabLoader::OnMemoryPressure(
base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level) {
if (ShouldStopLoadingTabs())
StopLoadingTabs();
}
"""
This signal has different semantics on different OSes. On macOS, it fires far too late.
https://bugs.chromium.org/p/chromium/issues/detail?id=713463
|
|
►
Sign in to add a comment |
|
Comment 1 by erikc...@chromium.org
, Apr 17 2018