Bug 1578501 [wpt PR 18803] - WebKit export of https://bugs.webkit.org/show_bug.cgi...
[gecko.git] / ipc / glue / Transport.h
blob9621d023544f410555e14ad1ef0be5f8aca1ef89
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 mozilla_ipc_Transport_h
8 #define mozilla_ipc_Transport_h 1
10 #include "base/process_util.h"
11 #include "chrome/common/ipc_channel.h"
13 #ifdef OS_POSIX
14 # include "mozilla/ipc/Transport_posix.h"
15 #elif OS_WIN
16 # include "mozilla/ipc/Transport_win.h"
17 #endif
18 #include "mozilla/UniquePtr.h"
20 namespace mozilla {
21 namespace ipc {
23 class FileDescriptor;
25 typedef IPC::Channel Transport;
27 nsresult CreateTransport(base::ProcessId aProcIdOne, TransportDescriptor* aOne,
28 TransportDescriptor* aTwo);
30 UniquePtr<Transport> OpenDescriptor(const TransportDescriptor& aTd,
31 Transport::Mode aMode);
33 UniquePtr<Transport> OpenDescriptor(const FileDescriptor& aFd,
34 Transport::Mode aMode);
36 TransportDescriptor DuplicateDescriptor(const TransportDescriptor& aTd);
38 void CloseDescriptor(const TransportDescriptor& aTd);
40 } // namespace ipc
41 } // namespace mozilla
43 #endif // mozilla_ipc_Transport_h