mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
75ac0c5ce0
--HG-- extra : rebase_source : 1b7e0a27e44f1e11ed84de7be18a19155d6750d5
114 lines
3.1 KiB
C++
114 lines
3.1 KiB
C++
/* -*- 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/Headers.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
|
#include "mozilla/dom/WorkerPrivate.h"
|
|
#include "mozilla/Preferences.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(Headers)
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(Headers)
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(Headers, mOwner)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(Headers)
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
NS_INTERFACE_MAP_END
|
|
|
|
// static
|
|
bool
|
|
Headers::PrefEnabled(JSContext* aCx, JSObject* aObj)
|
|
{
|
|
using mozilla::dom::workers::WorkerPrivate;
|
|
using mozilla::dom::workers::GetWorkerPrivateFromContext;
|
|
|
|
if (NS_IsMainThread()) {
|
|
static bool sPrefCacheInit = false;
|
|
static bool sPrefEnabled = false;
|
|
if (sPrefCacheInit) {
|
|
return sPrefEnabled;
|
|
}
|
|
Preferences::AddBoolVarCache(&sPrefEnabled, "dom.fetch.enabled");
|
|
sPrefCacheInit = true;
|
|
return sPrefEnabled;
|
|
}
|
|
|
|
WorkerPrivate* workerPrivate = GetWorkerPrivateFromContext(aCx);
|
|
if (!workerPrivate) {
|
|
return false;
|
|
}
|
|
|
|
return workerPrivate->DOMFetchEnabled();
|
|
}
|
|
|
|
// static
|
|
already_AddRefed<Headers>
|
|
Headers::Constructor(const GlobalObject& aGlobal,
|
|
const Optional<HeadersOrByteStringSequenceSequenceOrByteStringMozMap>& aInit,
|
|
ErrorResult& aRv)
|
|
{
|
|
nsRefPtr<InternalHeaders> ih = new InternalHeaders();
|
|
nsRefPtr<Headers> headers = new Headers(aGlobal.GetAsSupports(), ih);
|
|
|
|
if (!aInit.WasPassed()) {
|
|
return headers.forget();
|
|
}
|
|
|
|
if (aInit.Value().IsHeaders()) {
|
|
ih->Fill(*aInit.Value().GetAsHeaders().mInternalHeaders, aRv);
|
|
} else if (aInit.Value().IsByteStringSequenceSequence()) {
|
|
ih->Fill(aInit.Value().GetAsByteStringSequenceSequence(), aRv);
|
|
} else if (aInit.Value().IsByteStringMozMap()) {
|
|
ih->Fill(aInit.Value().GetAsByteStringMozMap(), aRv);
|
|
}
|
|
|
|
if (aRv.Failed()) {
|
|
return nullptr;
|
|
}
|
|
|
|
return headers.forget();
|
|
}
|
|
|
|
// static
|
|
already_AddRefed<Headers>
|
|
Headers::Constructor(const GlobalObject& aGlobal,
|
|
const OwningHeadersOrByteStringSequenceSequenceOrByteStringMozMap& aInit,
|
|
ErrorResult& aRv)
|
|
{
|
|
nsRefPtr<InternalHeaders> ih = new InternalHeaders();
|
|
nsRefPtr<Headers> headers = new Headers(aGlobal.GetAsSupports(), ih);
|
|
|
|
if (aInit.IsHeaders()) {
|
|
ih->Fill(*(aInit.GetAsHeaders().get()->mInternalHeaders), aRv);
|
|
} else if (aInit.IsByteStringSequenceSequence()) {
|
|
ih->Fill(aInit.GetAsByteStringSequenceSequence(), aRv);
|
|
} else if (aInit.IsByteStringMozMap()) {
|
|
ih->Fill(aInit.GetAsByteStringMozMap(), aRv);
|
|
}
|
|
|
|
if (NS_WARN_IF(aRv.Failed())) {
|
|
return nullptr;
|
|
}
|
|
|
|
return headers.forget();
|
|
}
|
|
|
|
JSObject*
|
|
Headers::WrapObject(JSContext* aCx)
|
|
{
|
|
return mozilla::dom::HeadersBinding::Wrap(aCx, this);
|
|
}
|
|
|
|
Headers::~Headers()
|
|
{
|
|
}
|
|
} // namespace dom
|
|
} // namespace mozilla
|