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

Unified Diff: mojo/shell/task_runners.h

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/switches.cc ('k') | mojo/shell/task_runners.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/task_runners.h
diff --git a/mojo/shell/task_runners.h b/mojo/shell/task_runners.h
index 17cdf89bf51ef41c3223af263d30dd75b627dd37..7331fa8e52446d8762fc9a6b7042ff2b9d25e7f0 100644
--- a/mojo/shell/task_runners.h
+++ b/mojo/shell/task_runners.h
@@ -33,14 +33,6 @@ class TaskRunners {
return io_thread_->message_loop_proxy();
}
- base::SingleThreadTaskRunner* file_runner() const {
- return file_thread_->message_loop_proxy();
- }
-
- base::MessageLoopProxy* cache_runner() const {
- return cache_thread_->message_loop_proxy();
- }
-
base::SequencedWorkerPool* blocking_pool() const {
return blocking_pool_.get();
}
@@ -48,9 +40,7 @@ class TaskRunners {
private:
// TODO(beng): should this be named shell_runner_?
scoped_refptr<base::SingleThreadTaskRunner> ui_runner_;
- scoped_ptr<base::Thread> cache_thread_;
scoped_ptr<base::Thread> io_thread_;
- scoped_ptr<base::Thread> file_thread_;
scoped_refptr<base::SequencedWorkerPool> blocking_pool_;
« no previous file with comments | « mojo/shell/switches.cc ('k') | mojo/shell/task_runners.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698