/work/obj-fuzz/dist/include/mozilla/dom/MessageSender.h
Line | Count | Source (jump to first uncovered line) |
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/. */ |
6 | | |
7 | | #ifndef mozilla_dom_MessageSender_h |
8 | | #define mozilla_dom_MessageSender_h |
9 | | |
10 | | #include "mozilla/dom/MessageListenerManager.h" |
11 | | |
12 | | namespace mozilla { |
13 | | namespace dom { |
14 | | |
15 | | class MessageBroadcaster; |
16 | | |
17 | | /** |
18 | | * Implementation for the WebIDL MessageSender interface. Base class for frame and child |
19 | | * process message managers. |
20 | | */ |
21 | | class MessageSender : public MessageListenerManager |
22 | | { |
23 | | public: |
24 | | void InitWithCallback(ipc::MessageManagerCallback* aCallback); |
25 | | |
26 | | protected: |
27 | | MessageSender(ipc::MessageManagerCallback* aCallback, |
28 | | MessageBroadcaster* aParentManager, |
29 | | MessageManagerFlags aFlags) |
30 | | : MessageListenerManager(aCallback, aParentManager, aFlags) |
31 | 0 | {} |
32 | | }; |
33 | | |
34 | | } // namespace dom |
35 | | } // namespace mozilla |
36 | | |
37 | | #endif // mozilla_dom_MessageSender_h |