| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/download/download_item_impl_delegate.h" | 5 #include "content/browser/download/download_item_impl_delegate.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "content/browser/download/download_item_impl.h" | 8 #include "content/browser/download/download_item_impl.h" |
| 9 | 9 |
| 10 namespace content { | 10 namespace content { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 } | 23 } |
| 24 | 24 |
| 25 void DownloadItemImplDelegate::Detach() { | 25 void DownloadItemImplDelegate::Detach() { |
| 26 DCHECK_LT(0, count_); | 26 DCHECK_LT(0, count_); |
| 27 --count_; | 27 --count_; |
| 28 } | 28 } |
| 29 | 29 |
| 30 void DownloadItemImplDelegate::DetermineDownloadTarget( | 30 void DownloadItemImplDelegate::DetermineDownloadTarget( |
| 31 DownloadItemImpl* download, const DownloadTargetCallback& callback) { | 31 DownloadItemImpl* download, const DownloadTargetCallback& callback) { |
| 32 // TODO(rdsmith/asanka): Do something useful if forced file path is null. | 32 // TODO(rdsmith/asanka): Do something useful if forced file path is null. |
| 33 FilePath target_path(download->GetForcedFilePath()); | 33 base::FilePath target_path(download->GetForcedFilePath()); |
| 34 callback.Run(target_path, | 34 callback.Run(target_path, |
| 35 DownloadItem::TARGET_DISPOSITION_OVERWRITE, | 35 DownloadItem::TARGET_DISPOSITION_OVERWRITE, |
| 36 DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS, | 36 DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS, |
| 37 target_path); | 37 target_path); |
| 38 } | 38 } |
| 39 | 39 |
| 40 bool DownloadItemImplDelegate::ShouldCompleteDownload( | 40 bool DownloadItemImplDelegate::ShouldCompleteDownload( |
| 41 DownloadItemImpl* download, | 41 DownloadItemImpl* download, |
| 42 const base::Closure& complete_callback) { | 42 const base::Closure& complete_callback) { |
| 43 return true; | 43 return true; |
| 44 } | 44 } |
| 45 | 45 |
| 46 bool DownloadItemImplDelegate::ShouldOpenDownload( | 46 bool DownloadItemImplDelegate::ShouldOpenDownload( |
| 47 DownloadItemImpl* download, const ShouldOpenDownloadCallback& callback) { | 47 DownloadItemImpl* download, const ShouldOpenDownloadCallback& callback) { |
| 48 return false; | 48 return false; |
| 49 } | 49 } |
| 50 | 50 |
| 51 bool DownloadItemImplDelegate::ShouldOpenFileBasedOnExtension( | 51 bool DownloadItemImplDelegate::ShouldOpenFileBasedOnExtension( |
| 52 const FilePath& path) { | 52 const base::FilePath& path) { |
| 53 return false; | 53 return false; |
| 54 } | 54 } |
| 55 | 55 |
| 56 void DownloadItemImplDelegate::CheckForFileRemoval( | 56 void DownloadItemImplDelegate::CheckForFileRemoval( |
| 57 DownloadItemImpl* download_item) {} | 57 DownloadItemImpl* download_item) {} |
| 58 | 58 |
| 59 void DownloadItemImplDelegate::ResumeInterruptedDownload( | 59 void DownloadItemImplDelegate::ResumeInterruptedDownload( |
| 60 scoped_ptr<DownloadUrlParameters> params, content::DownloadId id) {} | 60 scoped_ptr<DownloadUrlParameters> params, content::DownloadId id) {} |
| 61 | 61 |
| 62 BrowserContext* DownloadItemImplDelegate::GetBrowserContext() const { | 62 BrowserContext* DownloadItemImplDelegate::GetBrowserContext() const { |
| 63 return NULL; | 63 return NULL; |
| 64 } | 64 } |
| 65 | 65 |
| 66 void DownloadItemImplDelegate::UpdatePersistence(DownloadItemImpl* download) {} | 66 void DownloadItemImplDelegate::UpdatePersistence(DownloadItemImpl* download) {} |
| 67 | 67 |
| 68 void DownloadItemImplDelegate::OpenDownload(DownloadItemImpl* download) {} | 68 void DownloadItemImplDelegate::OpenDownload(DownloadItemImpl* download) {} |
| 69 | 69 |
| 70 void DownloadItemImplDelegate::ShowDownloadInShell(DownloadItemImpl* download) { | 70 void DownloadItemImplDelegate::ShowDownloadInShell(DownloadItemImpl* download) { |
| 71 } | 71 } |
| 72 | 72 |
| 73 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} | 73 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} |
| 74 | 74 |
| 75 void DownloadItemImplDelegate::ShowDownloadInBrowser( | 75 void DownloadItemImplDelegate::ShowDownloadInBrowser( |
| 76 DownloadItemImpl* download) {} | 76 DownloadItemImpl* download) {} |
| 77 | 77 |
| 78 void DownloadItemImplDelegate::AssertStateConsistent( | 78 void DownloadItemImplDelegate::AssertStateConsistent( |
| 79 DownloadItemImpl* download) const {} | 79 DownloadItemImpl* download) const {} |
| 80 | 80 |
| 81 } // namespace content | 81 } // namespace content |
| OLD | NEW |