mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1131327 - Patch 8 - Return null on worker attribute access. r=baku
This commit is contained in:
parent
60d2f6e781
commit
0e0194f41c
@ -715,21 +715,21 @@ ServiceWorkerRegistrationWorkerThread::WrapObject(JSContext* aCx, JS::Handle<JSO
|
||||
already_AddRefed<workers::ServiceWorker>
|
||||
ServiceWorkerRegistrationWorkerThread::GetInstalling()
|
||||
{
|
||||
MOZ_CRASH("FIXME");
|
||||
// FIXME(nsm): Will be implemented after Bug 1113522.
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
already_AddRefed<workers::ServiceWorker>
|
||||
ServiceWorkerRegistrationWorkerThread::GetWaiting()
|
||||
{
|
||||
MOZ_CRASH("FIXME");
|
||||
// FIXME(nsm): Will be implemented after Bug 1113522.
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
already_AddRefed<workers::ServiceWorker>
|
||||
ServiceWorkerRegistrationWorkerThread::GetActive()
|
||||
{
|
||||
MOZ_CRASH("FIXME");
|
||||
// FIXME(nsm): Will be implemented after Bug 1113522.
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user