Chromium Code Reviews| Index: content/shell/shell_browser_main.cc |
| =================================================================== |
| --- content/shell/shell_browser_main.cc (revision 106339) |
| +++ content/shell/shell_browser_main.cc (working copy) |
| @@ -40,6 +40,7 @@ |
| resource_dispatcher_host_->save_file_manager()->Shutdown(); |
| resource_dispatcher_host_->Shutdown(); |
| io_thread_.reset(); |
| + appcache_thread_.reset(); |
| cache_thread_.reset(); |
| process_launcher_thread_.reset(); |
| file_thread_.reset(); |
| @@ -61,6 +62,8 @@ |
| cache_thread_.reset(new BrowserProcessSubThread(BrowserThread::CACHE)); |
| cache_thread_->StartWithOptions(options); |
| + appcache_thread_.reset(new BrowserProcessSubThread(BrowserThread::APPCACHE)); |
|
rvargas (doing something else)
2011/10/21 19:46:17
and here
|
| + appcache_thread_->Start(); |
| io_thread_.reset(new BrowserProcessSubThread(BrowserThread::IO)); |
| io_thread_->StartWithOptions(options); |