diff --git a/tests/cefclient/browser/client_handler.cc b/tests/cefclient/browser/client_handler.cc index 2df950b2a..030497fae 100644 --- a/tests/cefclient/browser/client_handler.cc +++ b/tests/cefclient/browser/client_handler.cc @@ -822,12 +822,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; }