Chromium Code Reviews| Index: chrome/browser/download/download_service.cc |
| diff --git a/chrome/browser/download/download_service.cc b/chrome/browser/download/download_service.cc |
| index 65e112489094eaa240fdd9518096edbe4da2865a..9e6221935873fe43f0714edcac549e6d9b7034e9 100644 |
| --- a/chrome/browser/download/download_service.cc |
| +++ b/chrome/browser/download/download_service.cc |
| @@ -1,4 +1,4 @@ |
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| @@ -8,6 +8,7 @@ |
| #include "chrome/browser/browser_process.h" |
| #include "chrome/browser/download/chrome_download_manager_delegate.h" |
| #include "chrome/browser/download/download_service_factory.h" |
| +#include "chrome/browser/net/chrome_net_log.h" |
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/browser/profiles/profile_manager.h" |
| #include "content/public/browser/download_manager.h" |
| @@ -37,7 +38,9 @@ DownloadManager* DownloadService::GetDownloadManager() { |
| if (!manager_delegate_.get()) |
| manager_delegate_ = new ChromeDownloadManagerDelegate(profile_); |
| manager_ = DownloadManager::Create( |
| - manager_delegate_.get(), g_browser_process->download_status_updater()); |
| + manager_delegate_.get(), |
| + g_browser_process->download_status_updater(), |
| + g_browser_process->net_log()); |
|
Randy Smith (Not in Mondays)
2012/02/03 19:36:41
Remind me: Is there a global from which we can gra
ahendrickson
2012/02/05 05:06:53
There is:
content::GetContentClient()->browser()-
Randy Smith (Not in Mondays)
2012/02/06 00:37:49
I'm torn--I can see arguments in both directions.
|
| manager_->Init(profile_); |
| manager_delegate_->SetDownloadManager(manager_); |
| download_manager_created_ = true; |