Index: chrome/browser/download/chrome_download_manager_delegate.cc |
=================================================================== |
--- chrome/browser/download/chrome_download_manager_delegate.cc (revision 150178) |
+++ chrome/browser/download/chrome_download_manager_delegate.cc (working copy) |
@@ -60,6 +60,10 @@ |
#include "chrome/browser/download/save_package_file_picker_chromeos.h" |
#endif |
+#if defined(OS_WIN) |
+#include "chrome/browser/download/download_completion_observer_win.h" |
+#endif // OS_WIN |
+ |
using content::BrowserContext; |
using content::BrowserThread; |
using content::DownloadId; |
@@ -139,6 +143,11 @@ |
extension_event_router_.reset(new ExtensionDownloadsEventRouter( |
profile_, download_manager_)); |
#endif |
+ |
+#if defined(OS_WIN) |
+ DownloadCompletionObserver* download_completion = |
+ new DownloadCompletionObserver(dm); |
+#endif // OS_WIN |
} |
void ChromeDownloadManagerDelegate::Shutdown() { |