| 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_;
|
|
|
|
|