mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
52 lines
1.3 KiB
C++
52 lines
1.3 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/. */
|
|
|
|
#ifndef mozilla_dom_workers_textencoder_h_
|
|
#define mozilla_dom_workers_textencoder_h_
|
|
|
|
#include "mozilla/dom/TextEncoderBase.h"
|
|
#include "mozilla/dom/workers/bindings/DOMBindingBase.h"
|
|
#include "mozilla/dom/TextEncoderBinding.h"
|
|
|
|
BEGIN_WORKERS_NAMESPACE
|
|
|
|
class TextEncoder MOZ_FINAL : public DOMBindingBase,
|
|
public TextEncoderBase
|
|
{
|
|
protected:
|
|
TextEncoder(JSContext* aCx)
|
|
: DOMBindingBase(aCx)
|
|
{}
|
|
|
|
virtual
|
|
~TextEncoder()
|
|
{}
|
|
|
|
public:
|
|
virtual void
|
|
_trace(JSTracer* aTrc) MOZ_OVERRIDE;
|
|
|
|
virtual void
|
|
_finalize(JSFreeOp* aFop) MOZ_OVERRIDE;
|
|
|
|
static TextEncoder*
|
|
Constructor(const WorkerGlobalObject& aGlobal,
|
|
const nsAString& aEncoding,
|
|
ErrorResult& aRv);
|
|
|
|
JSObject*
|
|
Encode(JSContext* aCx,
|
|
JS::Handle<JSObject*> aObj,
|
|
const nsAString& aString,
|
|
const TextEncodeOptionsWorkers& aOptions,
|
|
ErrorResult& aRv) {
|
|
return TextEncoderBase::Encode(aCx, aObj, aString, aOptions.mStream, aRv);
|
|
}
|
|
};
|
|
|
|
END_WORKERS_NAMESPACE
|
|
|
|
#endif // mozilla_dom_workers_textencoder_h_
|