Skip to content
Snippets Groups Projects
Commit 1be723b2 authored by svornost's avatar svornost
Browse files

Make "Save to file" function work correctly

parent 4a726ff5
No related branches found
No related tags found
1 merge request!5145Add standalone host executable for FreeCities, with unlimited storage adapter
......@@ -141,6 +141,16 @@ void FCHostHandler::OnLoadError(CefRefPtr<CefBrowser> browser,
frame->LoadString(ss.str(), failedUrl);
}
void FCHostHandler::OnBeforeDownload(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefDownloadItem> download_item,
const CefString& suggested_name,
CefRefPtr< CefBeforeDownloadCallback > callback)
{
CEF_REQUIRE_UI_THREAD();
callback->Continue(suggested_name, true);
}
void FCHostHandler::CloseAllBrowsers(bool force_close) {
if (!CefCurrentlyOn(TID_UI)) {
// Execute on the UI thread.
......
......@@ -11,7 +11,8 @@
class FCHostHandler : public CefClient,
public CefDisplayHandler,
public CefLifeSpanHandler,
public CefLoadHandler {
public CefLoadHandler,
public CefDownloadHandler {
public:
explicit FCHostHandler(bool use_views);
~FCHostHandler();
......@@ -27,6 +28,7 @@ class FCHostHandler : public CefClient,
return this;
}
virtual CefRefPtr<CefLoadHandler> GetLoadHandler() OVERRIDE { return this; }
virtual CefRefPtr<CefDownloadHandler> GetDownloadHandler() OVERRIDE { return this; }
// CefDisplayHandler methods:
......@@ -49,6 +51,12 @@ class FCHostHandler : public CefClient,
ErrorCode errorCode,
const CefString& errorText,
const CefString& failedUrl) OVERRIDE;
// CefDownloadHandler methods:
virtual void OnBeforeDownload(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefDownloadItem> download_item,
const CefString& suggested_name,
CefRefPtr< CefBeforeDownloadCallback > callback) OVERRIDE;
// Request that all existing browser windows close.
void CloseAllBrowsers(bool force_close);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment