| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/public/browser/download_manager_delegate.h" | 5 #include "content/public/browser/download_manager_delegate.h" |
| 6 | 6 |
| 7 #include "content/public/browser/download_id.h" | 7 #include "content/public/browser/download_id.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 WebContents* DownloadManagerDelegate:: | 24 WebContents* DownloadManagerDelegate:: |
| 25 GetAlternativeWebContentsToNotifyForDownload() { | 25 GetAlternativeWebContentsToNotifyForDownload() { |
| 26 return NULL; | 26 return NULL; |
| 27 } | 27 } |
| 28 | 28 |
| 29 bool DownloadManagerDelegate::ShouldOpenFileBasedOnExtension( | 29 bool DownloadManagerDelegate::ShouldOpenFileBasedOnExtension( |
| 30 const FilePath& path) { | 30 const FilePath& path) { |
| 31 return false; | 31 return false; |
| 32 } | 32 } |
| 33 | 33 |
| 34 bool DownloadManagerDelegate::ShouldCompleteDownload(DownloadItem* item) { | 34 bool DownloadManagerDelegate::ShouldCompleteDownload( |
| 35 DownloadItem* item, |
| 36 const base::Closure& maybe_complete_download) { |
| 35 return true; | 37 return true; |
| 36 } | 38 } |
| 37 | 39 |
| 38 bool DownloadManagerDelegate::ShouldOpenDownload(DownloadItem* item) { | 40 bool DownloadManagerDelegate::ShouldOpenDownload(DownloadItem* item) { |
| 39 return true; | 41 return true; |
| 40 } | 42 } |
| 41 | 43 |
| 42 bool DownloadManagerDelegate::GenerateFileHash() { | 44 bool DownloadManagerDelegate::GenerateFileHash() { |
| 43 return false; | 45 return false; |
| 44 } | 46 } |
| 45 | 47 |
| 46 } // namespace content | 48 } // namespace content |
| OLD | NEW |