mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_dom_BroadcastChannelParent_h
|
|
#define mozilla_dom_BroadcastChannelParent_h
|
|
|
|
#include "mozilla/dom/PBroadcastChannelParent.h"
|
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
class BackgroundParentImpl;
|
|
}
|
|
|
|
namespace dom {
|
|
|
|
class BroadcastChannelService;
|
|
|
|
class BroadcastChannelParent final : public PBroadcastChannelParent
|
|
{
|
|
friend class mozilla::ipc::BackgroundParentImpl;
|
|
|
|
public:
|
|
void CheckAndDeliver(const ClonedMessageData& aData,
|
|
const nsString& aOrigin,
|
|
const nsString& aChannel,
|
|
bool aPrivateBrowsing);
|
|
|
|
private:
|
|
BroadcastChannelParent(const nsAString& aOrigin,
|
|
const nsAString& aChannel,
|
|
bool aPrivateBrowsing);
|
|
~BroadcastChannelParent();
|
|
|
|
virtual bool
|
|
RecvPostMessage(const ClonedMessageData& aData) override;
|
|
|
|
virtual bool RecvClose() override;
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
|
|
|
|
nsRefPtr<BroadcastChannelService> mService;
|
|
nsString mOrigin;
|
|
nsString mChannel;
|
|
bool mPrivateBrowsing;
|
|
};
|
|
|
|
} // dom namespace
|
|
} // mozilla namespace
|
|
|
|
#endif // mozilla_dom_BroadcastChannelParent_h
|