From: zecke@webkit.org Date: Fri, 12 Dec 2008 17:42:21 +0000 (+0000) Subject: 2008-12-12 Brent Fulgham X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=804f87cef662ff450c35af0d66595b0146fa2d7e 2008-12-12 Brent Fulgham Reviewed by Adam Roben. https://bugs.webkit.org/show_bug.cgi?id=22809 Increase timeout in call to initWithURL so that people actually see new web pages when they type URLs rather than a blank screen. * WinLauncher/WinLauncher.cpp: (loadURL): Increase timeout in initWithURL from 0 to 60 seconds. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@39245 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog index f0e0d7b..74e2763 100644 --- a/WebKitTools/ChangeLog +++ b/WebKitTools/ChangeLog @@ -1,3 +1,15 @@ +2008-12-12 Brent Fulgham + + Reviewed by Adam Roben. + + https://bugs.webkit.org/show_bug.cgi?id=22809 + + Increase timeout in call to initWithURL so that people actually see + new web pages when they type URLs rather than a blank screen. + + * WinLauncher/WinLauncher.cpp: + (loadURL): Increase timeout in initWithURL from 0 to 60 seconds. + 2008-12-12 Darin Adler * Scripts/do-webcore-rename: Add a renaming idea. diff --git a/WebKitTools/WinLauncher/WinLauncher.cpp b/WebKitTools/WinLauncher/WinLauncher.cpp index f9f0ea7..035077d 100644 --- a/WebKitTools/WinLauncher/WinLauncher.cpp +++ b/WebKitTools/WinLauncher/WinLauncher.cpp @@ -387,7 +387,7 @@ static void loadURL(BSTR urlBStr) if (FAILED(hr)) goto exit; - hr = request->initWithURL(urlBStr, WebURLRequestUseProtocolCachePolicy, 0); + hr = request->initWithURL(urlBStr, WebURLRequestUseProtocolCachePolicy, 60); if (FAILED(hr)) goto exit;