mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
49 lines
1.4 KiB
C++
49 lines
1.4 KiB
C++
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
/* 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 "Location.h"
|
|
|
|
#include "DOMBindingInlines.h"
|
|
|
|
#include "nsTraceRefcnt.h"
|
|
|
|
BEGIN_WORKERS_NAMESPACE
|
|
|
|
/* static */ already_AddRefed<WorkerLocation>
|
|
WorkerLocation::Create(JSContext* aCx, JS::Handle<JSObject*> aGlobal,
|
|
WorkerPrivate::LocationInfo& aInfo)
|
|
{
|
|
nsRefPtr<WorkerLocation> location =
|
|
new WorkerLocation(aCx,
|
|
NS_ConvertUTF8toUTF16(aInfo.mHref),
|
|
NS_ConvertUTF8toUTF16(aInfo.mProtocol),
|
|
NS_ConvertUTF8toUTF16(aInfo.mHost),
|
|
NS_ConvertUTF8toUTF16(aInfo.mHostname),
|
|
NS_ConvertUTF8toUTF16(aInfo.mPort),
|
|
NS_ConvertUTF8toUTF16(aInfo.mPathname),
|
|
NS_ConvertUTF8toUTF16(aInfo.mSearch),
|
|
NS_ConvertUTF8toUTF16(aInfo.mHash));
|
|
|
|
if (!Wrap(aCx, aGlobal, location)) {
|
|
return nullptr;
|
|
}
|
|
|
|
return location.forget();
|
|
}
|
|
|
|
void
|
|
WorkerLocation::_trace(JSTracer* aTrc)
|
|
{
|
|
DOMBindingBase::_trace(aTrc);
|
|
}
|
|
|
|
void
|
|
WorkerLocation::_finalize(JSFreeOp* aFop)
|
|
{
|
|
DOMBindingBase::_finalize(aFop);
|
|
}
|
|
|
|
END_WORKERS_NAMESPACE
|