- add sources.
[platform/framework/web/crosswalk.git] / src / mojo / shell / task_runners.cc
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "mojo/shell/task_runners.h"
6
7 #include "base/message_loop/message_loop_proxy.h"
8 #include "base/threading/thread.h"
9
10 namespace mojo {
11 namespace shell {
12
13 TaskRunners::TaskRunners(base::SingleThreadTaskRunner* ui_runner)
14     : ui_runner_(ui_runner),
15       io_thread_(new base::Thread("io_thread")),
16       file_thread_(new base::Thread("file_thread")) {
17   base::Thread::Options options;
18   options.message_loop_type = base::MessageLoop::TYPE_IO;
19   io_thread_->StartWithOptions(options);
20   file_thread_->Start();
21 }
22
23 TaskRunners::~TaskRunners() {
24 }
25
26 }  // namespace shell
27 }  // namespace mojo