mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
5cccea6f0f
This patch was automatically generated using the following script: function convert() { echo "Converting $1 to $2..." find . \ ! -wholename "*/.git*" \ ! -wholename "obj-ff-dbg*" \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert MOZ_OVERRIDE override convert MOZ_FINAL final
101 lines
2.3 KiB
C++
101 lines
2.3 KiB
C++
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* 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_workers_serviceworkerclient_h
|
|
#define mozilla_dom_workers_serviceworkerclient_h
|
|
|
|
#include "nsCOMPtr.h"
|
|
#include "nsWrapperCache.h"
|
|
#include "mozilla/ErrorResult.h"
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
|
#include "mozilla/dom/ClientBinding.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace workers {
|
|
|
|
class ServiceWorkerClient;
|
|
class ServiceWorkerWindowClient;
|
|
|
|
// Used as a container object for information needed to create
|
|
// client objects.
|
|
class ServiceWorkerClientInfo final
|
|
{
|
|
friend class ServiceWorkerClient;
|
|
friend class ServiceWorkerWindowClient;
|
|
|
|
public:
|
|
explicit ServiceWorkerClientInfo(nsIDocument* aDoc);
|
|
|
|
private:
|
|
nsString mClientId;
|
|
uint64_t mWindowId;
|
|
nsString mUrl;
|
|
|
|
// Window Clients
|
|
VisibilityState mVisibilityState;
|
|
bool mFocused;
|
|
FrameType mFrameType;
|
|
};
|
|
|
|
class ServiceWorkerClient : public nsISupports,
|
|
public nsWrapperCache
|
|
{
|
|
public:
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(ServiceWorkerClient)
|
|
|
|
ServiceWorkerClient(nsISupports* aOwner,
|
|
const ServiceWorkerClientInfo& aClientInfo)
|
|
: mOwner(aOwner),
|
|
mId(aClientInfo.mClientId),
|
|
mWindowId(aClientInfo.mWindowId),
|
|
mUrl(aClientInfo.mUrl)
|
|
{
|
|
MOZ_ASSERT(aOwner);
|
|
}
|
|
|
|
nsISupports*
|
|
GetParentObject() const
|
|
{
|
|
return mOwner;
|
|
}
|
|
|
|
void GetId(nsString& aRetval) const
|
|
{
|
|
aRetval = mId;
|
|
}
|
|
|
|
void
|
|
GetUrl(nsAString& aUrl) const
|
|
{
|
|
aUrl.Assign(mUrl);
|
|
}
|
|
|
|
void
|
|
PostMessage(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
const Optional<Sequence<JS::Value>>& aTransferable,
|
|
ErrorResult& aRv);
|
|
|
|
JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
protected:
|
|
virtual ~ServiceWorkerClient()
|
|
{ }
|
|
|
|
private:
|
|
nsCOMPtr<nsISupports> mOwner;
|
|
nsString mId;
|
|
uint64_t mWindowId;
|
|
nsString mUrl;
|
|
};
|
|
|
|
} // namespace workers
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_workers_serviceworkerclient_h
|