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/browser/download/mock_download_manager_delegate.h" | 5 #include "content/browser/download/mock_download_manager_delegate.h" |
6 | 6 |
7 MockDownloadManagerDelegate::~MockDownloadManagerDelegate() { | 7 MockDownloadManagerDelegate::~MockDownloadManagerDelegate() { |
8 } | 8 } |
9 | 9 |
10 void MockDownloadManagerDelegate::Shutdown() { | 10 void MockDownloadManagerDelegate::Shutdown() { |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 void MockDownloadManagerDelegate::UpdateItemInPersistentStore( | 58 void MockDownloadManagerDelegate::UpdateItemInPersistentStore( |
59 DownloadItem* item) { | 59 DownloadItem* item) { |
60 } | 60 } |
61 | 61 |
62 void MockDownloadManagerDelegate::UpdatePathForItemInPersistentStore( | 62 void MockDownloadManagerDelegate::UpdatePathForItemInPersistentStore( |
63 DownloadItem* item, | 63 DownloadItem* item, |
64 const FilePath& new_path) { | 64 const FilePath& new_path) { |
65 } | 65 } |
66 | 66 |
67 void MockDownloadManagerDelegate::RemoveItemFromPersistentStore( | 67 void MockDownloadManagerDelegate::RemoveItemFromPersistentStore( |
68 DownloadItem* item) { | 68 int64 db_handle) { |
69 } | 69 } |
70 | 70 |
71 void MockDownloadManagerDelegate::RemoveItemsFromPersistentStoreBetween( | 71 void MockDownloadManagerDelegate::RemoveItemsFromPersistentStoreBetween( |
72 const base::Time remove_begin, | 72 const base::Time remove_begin, |
73 const base::Time remove_end) { | 73 const base::Time remove_end) { |
74 } | 74 } |
75 | 75 |
76 void MockDownloadManagerDelegate::GetSaveDir( | 76 void MockDownloadManagerDelegate::GetSaveDir( |
77 TabContents* tab_contents, | 77 TabContents* tab_contents, |
78 FilePath* website_save_dir, | 78 FilePath* website_save_dir, |
79 FilePath* download_save_dir) { | 79 FilePath* download_save_dir) { |
80 } | 80 } |
81 | 81 |
82 void MockDownloadManagerDelegate::ChooseSavePath( | 82 void MockDownloadManagerDelegate::ChooseSavePath( |
83 const base::WeakPtr<SavePackage>& save_package, | 83 const base::WeakPtr<SavePackage>& save_package, |
84 const FilePath& suggested_path, | 84 const FilePath& suggested_path, |
85 bool can_save_as_complete) { | 85 bool can_save_as_complete) { |
86 } | 86 } |
87 | 87 |
88 void MockDownloadManagerDelegate::DownloadProgressUpdated() { | 88 void MockDownloadManagerDelegate::DownloadProgressUpdated() { |
89 } | 89 } |
OLD | NEW |