diff --git a/tests/cefclient/browser/client_handler.cc b/tests/cefclient/browser/client_handler.cc index dfd75f2cd..d8559b4fd 100644 --- a/tests/cefclient/browser/client_handler.cc +++ b/tests/cefclient/browser/client_handler.cc @@ -850,12 +850,6 @@ bool ClientHandler::CanDownload(CefRefPtr browser, const CefString& request_method) { CEF_REQUIRE_UI_THREAD(); - if (!with_controls_) { - // Block the download. - LOG(INFO) << "Blocking download"; - return false; - } - // Allow the download. return true; }