| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index b3cfb9c3101373ce53ecde1e62eb2b5226ec037a..4c7ba789b5d11473328c8f7e92488830b333cb33 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -16,7 +16,6 @@
|
| #include "base/string_number_conversions.h"
|
| #include "base/threading/thread_restrictions.h"
|
| #include "content/browser/browser_thread_impl.h"
|
| -#include "content/browser/download/download_file_manager.h"
|
| #include "content/browser/download/save_file_manager.h"
|
| #include "content/browser/gamepad/gamepad_service.h"
|
| #include "content/browser/gpu/browser_gpu_channel_host_factory.h"
|
| @@ -571,10 +570,8 @@ void BrowserMainLoop::ShutdownThreadsAndCleanUp() {
|
| #if !defined(OS_IOS)
|
| // Clean up state that lives on or uses the file_thread_ before
|
| // it goes away.
|
| - if (resource_dispatcher_host_.get()) {
|
| - resource_dispatcher_host_.get()->download_file_manager()->Shutdown();
|
| + if (resource_dispatcher_host_.get())
|
| resource_dispatcher_host_.get()->save_file_manager()->Shutdown();
|
| - }
|
| #endif // !defined(OS_IOS)
|
| break;
|
| case BrowserThread::PROCESS_LAUNCHER:
|
|
|