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"
14 # include "mozilla/ipc/Transport_posix.h"
16 # include "mozilla/ipc/Transport_win.h"
18 #include "mozilla/UniquePtr.h"
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
);
41 } // namespace mozilla
43 #endif // mozilla_ipc_Transport_h