Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(952)

Unified Diff: content/browser/download/download_manager_impl_unittest.cc

Issue 9296012: Hooked up NetLog to DownloadItem, DownloadFile, and FileStream. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with trunk Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/download/download_manager_impl_unittest.cc
diff --git a/content/browser/download/download_manager_impl_unittest.cc b/content/browser/download/download_manager_impl_unittest.cc
index 323e267c928f56e3d9ba69d883e14550a4d5ce03..635f4fb186ef243a05a1894b3bec522babd3ee66 100644
--- a/content/browser/download/download_manager_impl_unittest.cc
+++ b/content/browser/download/download_manager_impl_unittest.cc
@@ -74,17 +74,20 @@ class MockDownloadFileFactory
public:
MockDownloadFileFactory() {}
- virtual DownloadFile* CreateFile(DownloadCreateInfo* info,
- const DownloadRequestHandle& request_handle,
- DownloadManager* download_manager,
- bool calculate_hash) OVERRIDE;
+ virtual DownloadFile* CreateFile(
+ DownloadCreateInfo* info,
+ const DownloadRequestHandle& request_handle,
+ DownloadManager* download_manager,
+ bool calculate_hash,
+ const net::BoundNetLog& bound_net_log) OVERRIDE;
};
DownloadFile* MockDownloadFileFactory::CreateFile(
DownloadCreateInfo* info,
const DownloadRequestHandle& request_handle,
DownloadManager* download_manager,
- bool calculate_hash) {
+ bool calculate_hash,
+ const net::BoundNetLog& bound_net_log) {
NOTREACHED();
return NULL;
}
@@ -211,7 +214,7 @@ class DownloadManagerTest : public testing::Test {
: browser_context(new TestBrowserContext()),
download_manager_delegate_(new TestDownloadManagerDelegate()),
download_manager_(DownloadManager::Create(
- download_manager_delegate_.get())),
+ download_manager_delegate_.get(), NULL)),
ui_thread_(BrowserThread::UI, &message_loop_),
file_thread_(BrowserThread::FILE, &message_loop_),
download_buffer_(new content::DownloadBuffer) {
@@ -345,7 +348,8 @@ DownloadFileWithErrors::DownloadFileWithErrors(DownloadCreateInfo* info,
: DownloadFileImpl(info,
new DownloadRequestHandle(),
manager,
- calculate_hash),
+ calculate_hash,
+ net::BoundNetLog()),
forced_error_(net::OK) {
}
@@ -535,7 +539,7 @@ TEST_F(DownloadManagerTest, MAYBE_StartDownload) {
DownloadFile* download_file(
new DownloadFileImpl(info.get(), new DownloadRequestHandle(),
- download_manager_, false));
+ download_manager_, false, net::BoundNetLog()));
AddDownloadToFileManager(info->download_id.local(), download_file);
download_file->Initialize();
download_manager_->StartDownload(info->download_id.local());
@@ -1186,7 +1190,7 @@ TEST_F(DownloadManagerTest, MAYBE_DownloadOverwriteTest) {
// properly.
DownloadFile* download_file(
new DownloadFileImpl(info.get(), new DownloadRequestHandle(),
- download_manager_, false));
+ download_manager_, false, net::BoundNetLog()));
download_file->Rename(cr_path);
// This creates the .temp version of the file.
download_file->Initialize();
@@ -1260,7 +1264,7 @@ TEST_F(DownloadManagerTest, MAYBE_DownloadRemoveTest) {
// properly.
DownloadFile* download_file(
new DownloadFileImpl(info.get(), new DownloadRequestHandle(),
- download_manager_, false));
+ download_manager_, false, net::BoundNetLog()));
download_file->Rename(cr_path);
// This creates the .temp version of the file.
download_file->Initialize();
« no previous file with comments | « content/browser/download/download_manager_impl.cc ('k') | content/browser/download/download_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698