1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef dom_plugins_IOThreadChild_h
8 #define dom_plugins_IOThreadChild_h
10 #include "chrome/common/child_thread.h"
11 #include "mozilla/ipc/Endpoint.h"
12 #include "mozilla/ipc/NodeController.h"
13 #include "mozilla/ipc/ProcessChild.h"
17 //-----------------------------------------------------------------------------
19 // The IOThreadChild class represents a background thread where the
20 // IPC IO MessageLoop lives.
21 class IOThreadChild
: public ChildThread
{
23 explicit IOThreadChild(base::ProcessId aParentPid
)
24 : ChildThread(base::Thread::Options(MessageLoop::TYPE_IO
,
28 ~IOThreadChild() = default;
30 static MessageLoop
* message_loop() {
31 return IOThreadChild::current()->Thread::message_loop();
35 static IOThreadChild
* current() {
36 return static_cast<IOThreadChild
*>(ChildThread::current());
40 DISALLOW_EVIL_CONSTRUCTORS(IOThreadChild
);
44 } // namespace mozilla
46 #endif // ifndef dom_plugins_IOThreadChild_h