summaryrefslogtreecommitdiffstats
path: root/src/core/download_manager_delegate_qt.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-05-03 18:46:06 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-06-26 08:17:25 +0000
commit57c49df9c6fcbaaffc66900e191312d4e0a0edfa (patch)
treea067be82e9c367673b3f8efdbcf0a21a780b5451 /src/core/download_manager_delegate_qt.h
parent8d752cab84d437244ef0c2318b70d6516e99a044 (diff)
Adaptations for Chromium 66
Change-Id: Iee88721a50036d4ef85a23dd1708d4fb84218708 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'src/core/download_manager_delegate_qt.h')
-rw-r--r--src/core/download_manager_delegate_qt.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/core/download_manager_delegate_qt.h b/src/core/download_manager_delegate_qt.h
index 7563d5d3b..57fd5389b 100644
--- a/src/core/download_manager_delegate_qt.h
+++ b/src/core/download_manager_delegate_qt.h
@@ -51,10 +51,13 @@ class FilePath;
namespace content {
class BrowserContext;
-class DownloadItem;
class WebContents;
}
+namespace download {
+class DownloadItem;
+}
+
namespace QtWebEngineCore {
class BrowserContextAdapter;
class DownloadManagerDelegateInstance;
@@ -62,14 +65,14 @@ class DownloadTargetHelper;
class DownloadManagerDelegateQt
: public content::DownloadManagerDelegate
- , public content::DownloadItem::Observer
+ , public download::DownloadItem::Observer
{
public:
DownloadManagerDelegateQt(BrowserContextAdapter *contextAdapter);
~DownloadManagerDelegateQt();
void GetNextId(const content::DownloadIdCallback& callback) override;
- bool DetermineDownloadTarget(content::DownloadItem* item,
+ bool DetermineDownloadTarget(download::DownloadItem* item,
const content::DownloadTargetCallback& callback) override;
void GetSaveDir(content::BrowserContext* browser_context,
@@ -81,7 +84,7 @@ public:
const base::FilePath::StringType &default_extension,
bool can_save_as_complete,
const content::SavePackagePathPickedCallback &callback) override;
- bool IsMostRecentDownloadItemAtFilePath(content::DownloadItem* download) override;
+ bool IsMostRecentDownloadItemAtFilePath(download::DownloadItem* download) override;
void cancelDownload(quint32 downloadId);
@@ -91,12 +94,12 @@ public:
void markNextDownloadAsUserRequested() { m_nextDownloadIsUserRequested = true; }
// Inherited from content::DownloadItem::Observer
- void OnDownloadUpdated(content::DownloadItem *download) override;
- void OnDownloadDestroyed(content::DownloadItem *download) override;
+ void OnDownloadUpdated(download::DownloadItem *download) override;
+ void OnDownloadDestroyed(download::DownloadItem *download) override;
private:
void cancelDownload(const content::DownloadTargetCallback& callback);
- void savePackageDownloadCreated(content::DownloadItem *download);
+ void savePackageDownloadCreated(download::DownloadItem *download);
BrowserContextAdapter *m_contextAdapter;
uint64_t m_currentId;