| 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/public/browser/download_manager_delegate.h" | 5 #include "content/public/browser/download_manager_delegate.h" |
| 6 | 6 |
| 7 #include "content/public/browser/download_item.h" | 7 #include "content/public/browser/download_item.h" |
| 8 | 8 |
| 9 namespace content { | 9 namespace content { |
| 10 | 10 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 bool DownloadManagerDelegate::ShouldOpenDownload( | 32 bool DownloadManagerDelegate::ShouldOpenDownload( |
| 33 DownloadItem* item, const DownloadOpenDelayedCallback& callback) { | 33 DownloadItem* item, const DownloadOpenDelayedCallback& callback) { |
| 34 return true; | 34 return true; |
| 35 } | 35 } |
| 36 | 36 |
| 37 bool DownloadManagerDelegate::GenerateFileHash() { | 37 bool DownloadManagerDelegate::GenerateFileHash() { |
| 38 return false; | 38 return false; |
| 39 } | 39 } |
| 40 | 40 |
| 41 std::string |
| 42 DownloadManagerDelegate::ApplicationClientIdForFileScanning() const { |
| 43 return std::string(); |
| 44 } |
| 45 |
| 41 DownloadManagerDelegate::~DownloadManagerDelegate() {} | 46 DownloadManagerDelegate::~DownloadManagerDelegate() {} |
| 42 | 47 |
| 43 } // namespace content | 48 } // namespace content |
| OLD | NEW |