Commit fbaa821f authored by kdillon's avatar kdillon Committed by Commit Bot

Restricting exit unload flow.

Currently the limit on end-of-life handlers when the user navigates or
closes a tab is 1s. This change restricts that to 500ms which accomodates
at the 99.9th percentile.

Bug: 832234
Change-Id: I09c9038dbe184910e44664e6d33b1b530c2645ae
Reviewed-on: https://chromium-review.googlesource.com/c/1384790Reviewed-by: default avatarKen Buchanan <kenrb@chromium.org>
Commit-Queue: Katie Dillon <kdillon@chromium.org>
Cr-Commit-Position: refs/heads/master@{#619510}
parent 850597a5
......@@ -164,7 +164,7 @@ void GetPlatformSpecificPrefs(RendererPreferences* prefs) {
} // namespace
// static
const int64_t RenderViewHostImpl::kUnloadTimeoutMS = 1000;
const int64_t RenderViewHostImpl::kUnloadTimeoutMS = 500;
///////////////////////////////////////////////////////////////////////////////
// RenderViewHost, public:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment