mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
129 lines
4.0 KiB
C++
129 lines
4.0 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_ipc_backgroundparentimpl_h__
|
|
#define mozilla_ipc_backgroundparentimpl_h__
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/ipc/PBackgroundParent.h"
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layout {
|
|
class VsyncParent;
|
|
}
|
|
|
|
namespace ipc {
|
|
|
|
// Instances of this class should never be created directly. This class is meant
|
|
// to be inherited in BackgroundImpl.
|
|
class BackgroundParentImpl : public PBackgroundParent
|
|
{
|
|
protected:
|
|
BackgroundParentImpl();
|
|
virtual ~BackgroundParentImpl();
|
|
|
|
virtual void
|
|
ActorDestroy(ActorDestroyReason aWhy) override;
|
|
|
|
virtual PBackgroundTestParent*
|
|
AllocPBackgroundTestParent(const nsCString& aTestArg) override;
|
|
|
|
virtual bool
|
|
RecvPBackgroundTestConstructor(PBackgroundTestParent* aActor,
|
|
const nsCString& aTestArg) override;
|
|
|
|
virtual bool
|
|
DeallocPBackgroundTestParent(PBackgroundTestParent* aActor) override;
|
|
|
|
virtual PBackgroundIDBFactoryParent*
|
|
AllocPBackgroundIDBFactoryParent(const LoggingInfo& aLoggingInfo)
|
|
override;
|
|
|
|
virtual bool
|
|
RecvPBackgroundIDBFactoryConstructor(PBackgroundIDBFactoryParent* aActor,
|
|
const LoggingInfo& aLoggingInfo)
|
|
override;
|
|
|
|
virtual bool
|
|
DeallocPBackgroundIDBFactoryParent(PBackgroundIDBFactoryParent* aActor)
|
|
override;
|
|
|
|
virtual PBlobParent*
|
|
AllocPBlobParent(const BlobConstructorParams& aParams) override;
|
|
|
|
virtual bool
|
|
DeallocPBlobParent(PBlobParent* aActor) override;
|
|
|
|
virtual PFileDescriptorSetParent*
|
|
AllocPFileDescriptorSetParent(const FileDescriptor& aFileDescriptor)
|
|
override;
|
|
|
|
virtual bool
|
|
DeallocPFileDescriptorSetParent(PFileDescriptorSetParent* aActor)
|
|
override;
|
|
|
|
virtual PVsyncParent*
|
|
AllocPVsyncParent() override;
|
|
|
|
virtual bool
|
|
DeallocPVsyncParent(PVsyncParent* aActor) override;
|
|
|
|
virtual PBroadcastChannelParent*
|
|
AllocPBroadcastChannelParent(const PrincipalInfo& aPrincipalInfo,
|
|
const nsString& aOrigin,
|
|
const nsString& aChannel,
|
|
const bool& aPrivateBrowsing) override;
|
|
|
|
virtual bool
|
|
RecvPBroadcastChannelConstructor(PBroadcastChannelParent* actor,
|
|
const PrincipalInfo& aPrincipalInfo,
|
|
const nsString& origin,
|
|
const nsString& channel,
|
|
const bool& aPrivateBrowsing) override;
|
|
|
|
virtual bool
|
|
DeallocPBroadcastChannelParent(PBroadcastChannelParent* aActor) override;
|
|
|
|
virtual PMediaParent*
|
|
AllocPMediaParent() override;
|
|
|
|
virtual bool
|
|
DeallocPMediaParent(PMediaParent* aActor) override;
|
|
|
|
virtual bool
|
|
RecvRegisterServiceWorker(const ServiceWorkerRegistrationData& aData)
|
|
override;
|
|
|
|
virtual bool
|
|
RecvUnregisterServiceWorker(const PrincipalInfo& aPrincipalInfo,
|
|
const nsString& aScope) override;
|
|
|
|
virtual bool
|
|
RecvShutdownServiceWorkerRegistrar() override;
|
|
|
|
virtual dom::cache::PCacheStorageParent*
|
|
AllocPCacheStorageParent(const dom::cache::Namespace& aNamespace,
|
|
const PrincipalInfo& aPrincipalInfo) override;
|
|
|
|
virtual bool
|
|
DeallocPCacheStorageParent(dom::cache::PCacheStorageParent* aActor) override;
|
|
|
|
virtual dom::cache::PCacheParent* AllocPCacheParent() override;
|
|
|
|
virtual bool
|
|
DeallocPCacheParent(dom::cache::PCacheParent* aActor) override;
|
|
|
|
virtual dom::cache::PCacheStreamControlParent*
|
|
AllocPCacheStreamControlParent() override;
|
|
|
|
virtual bool
|
|
DeallocPCacheStreamControlParent(dom::cache::PCacheStreamControlParent* aActor) override;
|
|
};
|
|
|
|
} // namespace ipc
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_ipc_backgroundparentimpl_h__
|