summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/browser_context_adapter_client.h1
-rw-r--r--src/core/download_manager_delegate_qt.cpp2
2 files changed, 0 insertions, 3 deletions
diff --git a/src/core/browser_context_adapter_client.h b/src/core/browser_context_adapter_client.h
index 1d84ffb45..ff65f0c8f 100644
--- a/src/core/browser_context_adapter_client.h
+++ b/src/core/browser_context_adapter_client.h
@@ -60,7 +60,6 @@ public:
const quint32 id;
const QUrl url;
const int state;
- const int percentComplete;
const qint64 totalBytes;
const qint64 receivedBytes;
diff --git a/src/core/download_manager_delegate_qt.cpp b/src/core/download_manager_delegate_qt.cpp
index 78d5f909a..73a0976da 100644
--- a/src/core/download_manager_delegate_qt.cpp
+++ b/src/core/download_manager_delegate_qt.cpp
@@ -131,7 +131,6 @@ bool DownloadManagerDelegateQt::DetermineDownloadTarget(content::DownloadItem* i
item->GetId(),
toQt(item->GetURL()),
item->GetState(),
- item->PercentComplete(),
item->GetTotalBytes(),
item->GetReceivedBytes(),
suggestedFilePath,
@@ -178,7 +177,6 @@ void DownloadManagerDelegateQt::OnDownloadUpdated(content::DownloadItem *downloa
download->GetId(),
toQt(download->GetURL()),
download->GetState(),
- download->PercentComplete(),
download->GetTotalBytes(),
download->GetReceivedBytes(),
QString(),