| Index: chrome/browser/download/download_manager.h
|
| diff --git a/chrome/browser/download/download_manager.h b/chrome/browser/download/download_manager.h
|
| index bd0f83e883d5ee837bbf055014a4f08ade7aa146..bff3822a8243f449be4f5af612628546ee85b328 100644
|
| --- a/chrome/browser/download/download_manager.h
|
| +++ b/chrome/browser/download/download_manager.h
|
| @@ -66,6 +66,9 @@ class DownloadManager
|
| public:
|
| DownloadManager();
|
|
|
| + // Shutdown the download manager. Must be called before destruction.
|
| + void Shutdown();
|
| +
|
| // Interface to implement for observers that wish to be informed of changes
|
| // to the DownloadManager's collection of downloads.
|
| class Observer {
|
| @@ -226,9 +229,6 @@ class DownloadManager
|
| void OpenDownloadInShell(DownloadItem* download,
|
| gfx::NativeView parent_window);
|
|
|
| - // Shutdown the download manager. This call is needed only after Init.
|
| - void Shutdown();
|
| -
|
| // Called on the download thread to check whether the suggested file path
|
| // exists. We don't check if the file exists on the UI thread to avoid UI
|
| // stalls from interacting with the file system.
|
|
|