gecko/dom/workers/TextEncoder.cpp
Peter Van der Beken bfc9de7860 Fix for bug 816088 (webIDL bindings try to extract nsISupports from the global object in static properties in workers). r=bz.
--HG--
extra : rebase_source : 5668d9e01bff0fe7831d98018428856e5940a620
2012-12-03 17:07:49 +01:00

44 lines
1.1 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 "TextEncoder.h"
#include "DOMBindingInlines.h"
USING_WORKERS_NAMESPACE
using mozilla::ErrorResult;
using mozilla::dom::WorkerGlobalObject;
void
TextEncoder::_trace(JSTracer* aTrc)
{
DOMBindingBase::_trace(aTrc);
}
void
TextEncoder::_finalize(JSFreeOp* aFop)
{
DOMBindingBase::_finalize(aFop);
}
// static
TextEncoder*
TextEncoder::Constructor(const WorkerGlobalObject& aGlobal,
const nsAString& aEncoding,
ErrorResult& aRv)
{
nsRefPtr<TextEncoder> txtEncoder = new TextEncoder(aGlobal.GetContext());
txtEncoder->Init(aEncoding, aRv);
if (aRv.Failed()) {
return nullptr;
}
if (!Wrap(aGlobal.GetContext(), aGlobal.Get(), txtEncoder)) {
aRv.Throw(NS_ERROR_FAILURE);
return nullptr;
}
return txtEncoder;
}