Bug 1131327 - Patch 8 - Return null on worker attribute access. r=baku

This commit is contained in:
Nikhil Marathe 2015-04-14 16:12:59 -07:00
parent 60d2f6e781
commit 0e0194f41c

View File

@ -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;
}