2022-04-22 13:24:09 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "mozilla/dom/ScriptLoadContext.h"
|
2024-02-14 02:01:36 +00:00
|
|
|
#include "mozilla/loader/SyncModuleLoader.h"
|
2022-07-14 17:07:26 +00:00
|
|
|
#include "mozilla/dom/WorkerLoadContext.h"
|
2023-03-13 22:59:37 +00:00
|
|
|
#include "mozilla/dom/worklet/WorkletModuleLoader.h" // WorkletLoadContext
|
2022-04-22 13:24:09 +00:00
|
|
|
#include "js/loader/LoadContextBase.h"
|
|
|
|
#include "js/loader/ScriptLoadRequest.h"
|
|
|
|
|
|
|
|
namespace JS::loader {
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
// LoadContextBase
|
|
|
|
////////////////////////////////////////////////////////////////
|
|
|
|
|
2022-11-18 10:02:26 +00:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(LoadContextBase)
|
2022-12-21 18:09:35 +00:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
2022-11-18 10:02:26 +00:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(LoadContextBase)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(LoadContextBase)
|
|
|
|
|
2022-12-21 18:09:35 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION(LoadContextBase, mRequest)
|
2022-11-18 10:02:26 +00:00
|
|
|
|
2022-12-21 18:09:35 +00:00
|
|
|
LoadContextBase::LoadContextBase(ContextKind kind) : mKind(kind) {}
|
2022-04-22 13:24:09 +00:00
|
|
|
|
|
|
|
void LoadContextBase::SetRequest(ScriptLoadRequest* aRequest) {
|
|
|
|
MOZ_ASSERT(!mRequest);
|
|
|
|
mRequest = aRequest;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LoadContextBase::GetProfilerLabel(nsACString& aOutString) {
|
|
|
|
aOutString.Append("Unknown Script Element");
|
|
|
|
}
|
|
|
|
|
|
|
|
mozilla::dom::ScriptLoadContext* LoadContextBase::AsWindowContext() {
|
|
|
|
MOZ_ASSERT(IsWindowContext());
|
|
|
|
return static_cast<mozilla::dom::ScriptLoadContext*>(this);
|
|
|
|
}
|
|
|
|
|
2024-02-14 02:01:36 +00:00
|
|
|
mozilla::loader::SyncLoadContext* LoadContextBase::AsSyncContext() {
|
|
|
|
MOZ_ASSERT(IsSyncContext());
|
|
|
|
return static_cast<mozilla::loader::SyncLoadContext*>(this);
|
2022-05-10 12:58:08 +00:00
|
|
|
}
|
|
|
|
|
2022-07-14 17:07:26 +00:00
|
|
|
mozilla::dom::WorkerLoadContext* LoadContextBase::AsWorkerContext() {
|
2022-07-14 17:07:25 +00:00
|
|
|
MOZ_ASSERT(IsWorkerContext());
|
2022-07-14 17:07:26 +00:00
|
|
|
return static_cast<mozilla::dom::WorkerLoadContext*>(this);
|
2022-07-14 17:07:25 +00:00
|
|
|
}
|
|
|
|
|
2023-03-13 22:59:37 +00:00
|
|
|
mozilla::dom::WorkletLoadContext* LoadContextBase::AsWorkletContext() {
|
|
|
|
MOZ_ASSERT(IsWorkletContext());
|
|
|
|
return static_cast<mozilla::dom::WorkletLoadContext*>(this);
|
|
|
|
}
|
|
|
|
|
2022-04-22 13:24:09 +00:00
|
|
|
} // namespace JS::loader
|