Bump the close timeout to 10s.

Fixes atom/atom#1838.
This commit is contained in:
Cheng Zhao 2014-04-26 13:15:41 +08:00
parent 3584d48dbe
commit 97006bcbc3

View file

@ -309,11 +309,11 @@ void NativeWindow::CloseWebContents() {
content::WebContents* web_contents(GetWebContents());
// Assume the window is not responding if it doesn't cancel the close and is
// not closed in 5000ms, in this way we can quickly show the unresponsive
// not closed in 10s, in this way we can quickly show the unresponsive
// dialog when the window is busy executing some script withouth waiting for
// the unresponsive timeout.
if (window_unresposive_closure_.IsCancelled())
ScheduleUnresponsiveEvent(5000);
ScheduleUnresponsiveEvent(10000);
if (web_contents->NeedToFireBeforeUnload())
web_contents->GetRenderViewHost()->FirePageBeforeUnload(false);