Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(746)

Unified Diff: content/browser/download/download_item_impl_delegate.cc

Issue 10831302: Download resumption - Preliminary (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed content unit tests. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/download/download_item_impl_delegate.cc
diff --git a/content/browser/download/download_item_impl_delegate.cc b/content/browser/download/download_item_impl_delegate.cc
index 4a889f77d24e5dc68b198fa70e16b162aeb9bd38..daad34b7b67d694c6a8765cf5202c51661aace6a 100644
--- a/content/browser/download/download_item_impl_delegate.cc
+++ b/content/browser/download/download_item_impl_delegate.cc
@@ -37,8 +37,11 @@ bool DownloadItemImplDelegate::ShouldOpenDownload(DownloadItemImpl* download) {
void DownloadItemImplDelegate::CheckForFileRemoval(
DownloadItemImpl* download_item) {}
-void DownloadItemImplDelegate::MaybeCompleteDownload(
- DownloadItemImpl* download) {}
+void DownloadItemImplDelegate::MaybeCompleteDownload(int32 download_id) {}
+
+void DownloadItemImplDelegate::RestartInterruptedDownload(
+ DownloadItemImpl* download,
+ const content::DownloadUrlParameters::OnStartedCallback& callback) {}
content::BrowserContext* DownloadItemImplDelegate::GetBrowserContext() const {
return NULL;

Powered by Google App Engine
This is Rietveld 408576698