Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Unified Diff: content/shell/shell_browser_main.cc

Issue 8366020: Create a secondary file thread, FILE_USER_BLOCKING... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« content/browser/browser_thread.cc ('K') | « content/shell/shell_browser_main.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« content/browser/browser_thread.cc ('K') | « content/shell/shell_browser_main.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698