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 "base/file_util.h" | |
asanka
2012/12/28 22:01:42
Remove?
Randy Smith (Not in Mondays)
2012/12/29 17:16:16
Done.
| |
7 #include "content/public/browser/download_id.h" | 8 #include "content/public/browser/download_id.h" |
8 #include "content/public/browser/download_item.h" | 9 #include "content/public/browser/download_item.h" |
9 | 10 |
10 namespace content { | 11 namespace content { |
11 | 12 |
12 DownloadId DownloadManagerDelegate::GetNextId() { | 13 DownloadId DownloadManagerDelegate::GetNextId() { |
13 return DownloadId::Invalid(); | 14 return DownloadId::Invalid(); |
14 } | 15 } |
15 | 16 |
16 bool DownloadManagerDelegate::DetermineDownloadTarget( | 17 bool DownloadManagerDelegate::DetermineDownloadTarget( |
(...skipping 23 matching lines...) Expand all Loading... | |
40 return true; | 41 return true; |
41 } | 42 } |
42 | 43 |
43 bool DownloadManagerDelegate::GenerateFileHash() { | 44 bool DownloadManagerDelegate::GenerateFileHash() { |
44 return false; | 45 return false; |
45 } | 46 } |
46 | 47 |
47 DownloadManagerDelegate::~DownloadManagerDelegate() {} | 48 DownloadManagerDelegate::~DownloadManagerDelegate() {} |
48 | 49 |
49 } // namespace content | 50 } // namespace content |
OLD | NEW |