ipc/ril/Ril.h

branch
TOR_BUG_3246
changeset 6
8bccb770b82d
equal deleted inserted replaced
-1:000000000000 0:1b44329075a7
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set sw=2 ts=8 et ft=cpp: */
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/. */
6
7 #ifndef mozilla_ipc_Ril_h
8 #define mozilla_ipc_Ril_h 1
9
10 #include <mozilla/dom/workers/Workers.h>
11 #include <mozilla/ipc/UnixSocket.h>
12
13 namespace mozilla {
14 namespace ipc {
15
16 class RilConsumer : public mozilla::ipc::UnixSocketConsumer
17 {
18 public:
19 virtual ~RilConsumer() { }
20
21 static nsresult Register(unsigned int aClientId,
22 mozilla::dom::workers::WorkerCrossThreadDispatcher* aDispatcher);
23 static void Shutdown();
24
25 private:
26 RilConsumer(unsigned long aClientId,
27 mozilla::dom::workers::WorkerCrossThreadDispatcher* aDispatcher);
28
29 virtual void ReceiveSocketData(nsAutoPtr<UnixSocketRawData>& aMessage);
30
31 virtual void OnConnectSuccess();
32 virtual void OnConnectError();
33 virtual void OnDisconnect();
34
35 private:
36 nsRefPtr<mozilla::dom::workers::WorkerCrossThreadDispatcher> mDispatcher;
37 unsigned long mClientId;
38 nsCString mAddress;
39 bool mShutdown;
40 };
41
42 } // namespace ipc
43 } // namespace mozilla
44
45 #endif // mozilla_ipc_Ril_h

mercurial