Bug 1726269: part 1) Repeatedly call `::OleSetClipboard` for the Windows-specific...
[gecko.git] / dom / broadcastchannel / BroadcastChannelService.h
blob8698025585dadeaf078d0a55552f297009054c0b
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"
14 #ifdef XP_WIN
15 # undef PostMessage
16 #endif
18 namespace mozilla {
19 namespace dom {
21 class BroadcastChannelParent;
22 class MessageData;
24 class BroadcastChannelService final {
25 public:
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);
38 private:
39 BroadcastChannelService();
40 ~BroadcastChannelService();
42 // Raw Pointers because the actors keep alive this service.
43 nsClassHashtable<nsStringHashKey, nsTArray<BroadcastChannelParent*>> mAgents;
46 } // namespace dom
47 } // namespace mozilla
49 #endif // mozilla_dom_BroadcastChannelService_h