mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
c93d203e5c
--HG-- extra : transplant_source : %E9%C4%13%80%CA%EEj%8D%17%A0LE%F3Tm%0F%EB%2B%3D3 extra : histedit_source : e16da08aa5dca392ad6270a3b03c05c74d1a5ad6
149 lines
3.8 KiB
C++
149 lines
3.8 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* 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_serviceworkerevents_h__
|
|
#define mozilla_dom_workers_serviceworkerevents_h__
|
|
|
|
#include "mozilla/dom/Event.h"
|
|
#include "mozilla/dom/ExtendableEventBinding.h"
|
|
#include "mozilla/dom/InstallEventBinding.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
class Promise;
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
BEGIN_WORKERS_NAMESPACE
|
|
|
|
class ServiceWorker;
|
|
|
|
class ExtendableEvent : public Event
|
|
{
|
|
nsRefPtr<Promise> mPromise;
|
|
|
|
protected:
|
|
explicit ExtendableEvent(mozilla::dom::EventTarget* aOwner);
|
|
~ExtendableEvent() {}
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(ExtendableEvent, Event)
|
|
NS_FORWARD_TO_EVENT
|
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx) MOZ_OVERRIDE
|
|
{
|
|
return mozilla::dom::ExtendableEventBinding::Wrap(aCx, this);
|
|
}
|
|
|
|
static already_AddRefed<ExtendableEvent>
|
|
Constructor(mozilla::dom::EventTarget* aOwner,
|
|
const nsAString& aType,
|
|
const EventInit& aOptions)
|
|
{
|
|
nsRefPtr<ExtendableEvent> e = new ExtendableEvent(aOwner);
|
|
bool trusted = e->Init(aOwner);
|
|
e->InitEvent(aType, aOptions.mBubbles, aOptions.mCancelable);
|
|
e->SetTrusted(trusted);
|
|
return e.forget();
|
|
}
|
|
|
|
static already_AddRefed<ExtendableEvent>
|
|
Constructor(const GlobalObject& aGlobal,
|
|
const nsAString& aType,
|
|
const EventInit& aOptions,
|
|
ErrorResult& aRv)
|
|
{
|
|
nsCOMPtr<EventTarget> target = do_QueryInterface(aGlobal.GetAsSupports());
|
|
return Constructor(target, aType, aOptions);
|
|
}
|
|
|
|
void
|
|
WaitUntil(Promise& aPromise);
|
|
|
|
already_AddRefed<Promise>
|
|
GetPromise() const
|
|
{
|
|
nsRefPtr<Promise> p = mPromise;
|
|
return p.forget();
|
|
}
|
|
|
|
virtual ExtendableEvent* AsExtendableEvent() MOZ_OVERRIDE
|
|
{
|
|
return this;
|
|
}
|
|
};
|
|
|
|
class InstallEvent MOZ_FINAL : public ExtendableEvent
|
|
{
|
|
// FIXME(nsm): Bug 982787 will allow actually populating this.
|
|
nsRefPtr<ServiceWorker> mActiveWorker;
|
|
bool mActivateImmediately;
|
|
|
|
protected:
|
|
explicit InstallEvent(mozilla::dom::EventTarget* aOwner);
|
|
~InstallEvent() {}
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(InstallEvent, ExtendableEvent)
|
|
NS_FORWARD_TO_EVENT
|
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx) MOZ_OVERRIDE
|
|
{
|
|
return mozilla::dom::InstallEventBinding::Wrap(aCx, this);
|
|
}
|
|
|
|
static already_AddRefed<InstallEvent>
|
|
Constructor(mozilla::dom::EventTarget* aOwner,
|
|
const nsAString& aType,
|
|
const InstallEventInit& aOptions)
|
|
{
|
|
nsRefPtr<InstallEvent> e = new InstallEvent(aOwner);
|
|
bool trusted = e->Init(aOwner);
|
|
e->InitEvent(aType, aOptions.mBubbles, aOptions.mCancelable);
|
|
e->SetTrusted(trusted);
|
|
e->mActiveWorker = aOptions.mActiveWorker;
|
|
return e.forget();
|
|
}
|
|
|
|
static already_AddRefed<InstallEvent>
|
|
Constructor(const GlobalObject& aGlobal,
|
|
const nsAString& aType,
|
|
const InstallEventInit& aOptions,
|
|
ErrorResult& aRv)
|
|
{
|
|
nsCOMPtr<EventTarget> owner = do_QueryInterface(aGlobal.GetAsSupports());
|
|
return Constructor(owner, aType, aOptions);
|
|
}
|
|
|
|
already_AddRefed<ServiceWorker>
|
|
GetActiveWorker() const
|
|
{
|
|
nsRefPtr<ServiceWorker> sw = mActiveWorker;
|
|
return sw.forget();
|
|
}
|
|
|
|
void
|
|
Replace()
|
|
{
|
|
mActivateImmediately = true;
|
|
};
|
|
|
|
bool
|
|
ActivateImmediately() const
|
|
{
|
|
return mActivateImmediately;
|
|
}
|
|
|
|
InstallEvent* AsInstallEvent() MOZ_OVERRIDE
|
|
{
|
|
return this;
|
|
}
|
|
};
|
|
|
|
END_WORKERS_NAMESPACE
|
|
#endif /* mozilla_dom_workers_serviceworkerevents_h__ */
|