From 06acc9546f09c161d63f90151dc9db7dc10fead8 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 13 Jul 2022 12:17:19 +0300 Subject: [PATCH] Increase frame reconnect timeout to 10 seconds (see issue #3260) --- libcef/renderer/frame_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcef/renderer/frame_impl.cc b/libcef/renderer/frame_impl.cc index 9af23408b..85c78efa8 100644 --- a/libcef/renderer/frame_impl.cc +++ b/libcef/renderer/frame_impl.cc @@ -61,7 +61,7 @@ constexpr size_t kConnectionRetryMaxCt = 3U; constexpr auto kConnectionRetryDelay = base::Seconds(1); // Length of time to wait for the browser connection ACK before timing out. -constexpr auto kConnectionTimeout = base::Seconds(4); +constexpr auto kConnectionTimeout = base::Seconds(10); } // namespace