mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
a6abc84e91
- Bug 1141392 - Disallow a line break between ArrowParameters and the arrow. (386dac894) - Bug 1138651 - Enable CSS Scroll Snapping by Default on B2G. (2e416be93) - Bug 1140623 - Correct mochitest failures that occur when the layout.css.scroll-snap.enabled preference is enabled (V3 Patch). (cfb1ccd33) - Bug 1136467 - ServiceWorker: client.postMessage should land in navigator.serviceWorker.onmessage. (547bc9d03) - Bug 1137419 - Use correct principal for update. (9b409bd5c) - Bug 1137408 - Use inner window to create ServiceWorker for Fetch Event (11958cf2b) - Bug 1137250 - Fix incorrect initialization of Request object. (ec637ee57) - Bug 1139990 - Remove No activatingWorker warning. (49154e967) - Bug 1058311 - Update client interface. Implement matchAll WindowClient. (cde7ba62a) - Bug 1131353 - Make ServiceWorkerGlobalScope.close() throw InvalidAccessError; (0ec3f45d9) - Bug 1137816 - Add a test for interfaces exposed to service workers; (19b5f9504) - Bug 1137816 follow-up: Add WindowClient, added by bug 1058311 (ce6f0ba73) - Bug 1141274 - Allocate shared workers and service workers from separate namespaces; (776221d45) - Bug 1133763 - Part 1: Remember the security info associated with HTTP fetches and record it inside InternalResponse; (fec70ad02) - Bug 1133763 - Part 2: Transfer the security info associated with an InternalResponse across the IPC layer (e7192f129) - Bug 1133763 - Part 3: Wipe out the cache directory when detecting a change in the DB schema; (82d81819a) - Bug 1133763 - Part 4: Store the response's security info in the cache database; (426e94e4b) - Bug 1133763 - Part 5: Allow the security info on intercepted HTTP channels to be overridden (4d079bf92) - Bug 1133763 - Part 6: Set the correct security info on intercepted channels when using the respondWith API (83e2b2a7d) - Bug 1133763 - Part 7: Add automated tests for using FetchEvent.respondWith on an HTTPS request (e0ee10e17) - Bug 1133763 - Part 8: Ensure that FetchEvent.respondWith works correctly on HTTPS requests with a cloned response (0db13351e) - Bug 1139425 - Service Worker Client uuid tests. (480b262ed) - Bug 1139425 - Service Worker Client id should return a DOMString uuid. (8b9ea176d) - Bug 1142853 - Add caret resources to package-manifest.in. (7e1a59681)
219 lines
5.3 KiB
C++
219 lines
5.3 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/FetchEventBinding.h"
|
|
#include "mozilla/dom/InstallEventBinding.h"
|
|
#include "mozilla/dom/Promise.h"
|
|
#include "nsProxyRelease.h"
|
|
|
|
class nsIInterceptedChannel;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
class Request;
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
BEGIN_WORKERS_NAMESPACE
|
|
|
|
class ServiceWorker;
|
|
class ServiceWorkerClient;
|
|
|
|
class FetchEvent final : public Event
|
|
{
|
|
nsMainThreadPtrHandle<nsIInterceptedChannel> mChannel;
|
|
nsMainThreadPtrHandle<ServiceWorker> mServiceWorker;
|
|
nsRefPtr<ServiceWorkerClient> mClient;
|
|
nsRefPtr<Request> mRequest;
|
|
nsAutoPtr<ServiceWorkerClientInfo> mClientInfo;
|
|
bool mIsReload;
|
|
bool mWaitToRespond;
|
|
protected:
|
|
explicit FetchEvent(EventTarget* aOwner);
|
|
~FetchEvent();
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(FetchEvent, Event)
|
|
NS_FORWARD_TO_EVENT
|
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx) override
|
|
{
|
|
return FetchEventBinding::Wrap(aCx, this);
|
|
}
|
|
|
|
void PostInit(nsMainThreadPtrHandle<nsIInterceptedChannel>& aChannel,
|
|
nsMainThreadPtrHandle<ServiceWorker>& aServiceWorker,
|
|
nsAutoPtr<ServiceWorkerClientInfo>& aClientInfo);
|
|
|
|
static already_AddRefed<FetchEvent>
|
|
Constructor(const GlobalObject& aGlobal,
|
|
const nsAString& aType,
|
|
const FetchEventInit& aOptions,
|
|
ErrorResult& aRv);
|
|
|
|
bool
|
|
WaitToRespond() const
|
|
{
|
|
return mWaitToRespond;
|
|
}
|
|
|
|
Request*
|
|
Request_() const
|
|
{
|
|
return mRequest;
|
|
}
|
|
|
|
already_AddRefed<ServiceWorkerClient>
|
|
GetClient();
|
|
|
|
bool
|
|
IsReload() const
|
|
{
|
|
return mIsReload;
|
|
}
|
|
|
|
void
|
|
RespondWith(Promise& aPromise, ErrorResult& aRv);
|
|
|
|
already_AddRefed<Promise>
|
|
ForwardTo(const nsAString& aUrl);
|
|
|
|
already_AddRefed<Promise>
|
|
Default();
|
|
};
|
|
|
|
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) 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() override
|
|
{
|
|
return this;
|
|
}
|
|
};
|
|
|
|
class InstallEvent 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) 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() override
|
|
{
|
|
return this;
|
|
}
|
|
};
|
|
|
|
END_WORKERS_NAMESPACE
|
|
#endif /* mozilla_dom_workers_serviceworkerevents_h__ */
|