mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
dc24477d79
The only manual changes here are to BindingUtils.h, BindingUtils.cpp, Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp, dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp, Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp, Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The rest of this diff was generated by running the following commands: find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g' find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g' find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g' find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g' find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g' find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
88 lines
2.5 KiB
C++
88 lines
2.5 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
|
|
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, JS::Handle<JSObject*> aGivenProto)
|
|
{
|
|
return mozilla::dom::HeadersBinding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
Headers::~Headers()
|
|
{
|
|
}
|
|
} // namespace dom
|
|
} // namespace mozilla
|