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 file,
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_BroadcastChannelService_h
8 #define mozilla_dom_BroadcastChannelService_h
10 #include "nsISupportsImpl.h"
11 #include "nsHashKeys.h"
12 #include "nsClassHashtable.h"
21 class BroadcastChannelParent
;
24 class BroadcastChannelService final
{
26 NS_INLINE_DECL_REFCOUNTING(BroadcastChannelService
)
28 static already_AddRefed
<BroadcastChannelService
> GetOrCreate();
30 void RegisterActor(BroadcastChannelParent
* aParent
,
31 const nsAString
& aOriginChannelKey
);
32 void UnregisterActor(BroadcastChannelParent
* aParent
,
33 const nsAString
& aOriginChannelKey
);
35 void PostMessage(BroadcastChannelParent
* aParent
, const MessageData
& aData
,
36 const nsAString
& aOriginChannelKey
);
39 BroadcastChannelService();
40 ~BroadcastChannelService();
42 // Raw Pointers because the actors keep alive this service.
43 nsClassHashtable
<nsStringHashKey
, nsTArray
<BroadcastChannelParent
*>> mAgents
;
47 } // namespace mozilla
49 #endif // mozilla_dom_BroadcastChannelService_h