summaryrefslogtreecommitdiffstats
path: root/src/core/browser_context_adapter_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/browser_context_adapter_client.h')
-rw-r--r--src/core/browser_context_adapter_client.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/core/browser_context_adapter_client.h b/src/core/browser_context_adapter_client.h
index 2b6b4f434..1d84ffb45 100644
--- a/src/core/browser_context_adapter_client.h
+++ b/src/core/browser_context_adapter_client.h
@@ -39,6 +39,7 @@
#include "qtwebenginecoreglobal.h"
#include <QString>
+#include <QUrl>
class QWEBENGINE_EXPORT BrowserContextAdapterClient
{
@@ -54,10 +55,23 @@ public:
// This state indicates that the download has been interrupted.
DownloadInterrupted
};
+
+ struct DownloadItemInfo {
+ const quint32 id;
+ const QUrl url;
+ const int state;
+ const int percentComplete;
+ const qint64 totalBytes;
+ const qint64 receivedBytes;
+
+ QString path;
+ bool cancelled;
+ };
+
virtual ~BrowserContextAdapterClient() { }
- virtual void downloadRequested(quint32 downloadId, QString &downloadPath, bool &cancelled) = 0;
- virtual void downloadUpdated(quint32 downloadId, int downloadState, int percentComplete) = 0;
+ virtual void downloadRequested(DownloadItemInfo &info) = 0;
+ virtual void downloadUpdated(const DownloadItemInfo &info) = 0;
};
#endif // BROWSER_CONTEXT_ADAPTER_CLIENT_H