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

Unified Diff: mojo/shell/task_runners.cc

Issue 323593002: Mojo: Use network service to load non-local Mojo Apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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
« no previous file with comments | « mojo/shell/task_runners.h ('k') | mojo/shell/url_request_context_getter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/task_runners.cc
diff --git a/mojo/shell/task_runners.cc b/mojo/shell/task_runners.cc
index ec1cffaba06606062aae9f435863819c14351835..573dca6ea298315cf1b07e62ac696de88654497d 100644
--- a/mojo/shell/task_runners.cc
+++ b/mojo/shell/task_runners.cc
@@ -25,12 +25,9 @@ scoped_ptr<base::Thread> CreateIOThread(const char* name) {
TaskRunners::TaskRunners(base::SingleThreadTaskRunner* ui_runner)
: ui_runner_(ui_runner),
- cache_thread_(CreateIOThread("cache_thread")),
io_thread_(CreateIOThread("io_thread")),
- file_thread_(new base::Thread("file_thread")),
blocking_pool_(new base::SequencedWorkerPool(kMaxBlockingPoolThreads,
"blocking_pool")) {
- file_thread_->Start();
}
TaskRunners::~TaskRunners() {
« no previous file with comments | « mojo/shell/task_runners.h ('k') | mojo/shell/url_request_context_getter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698