/* 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_textencoder_h_ #define mozilla_dom_textencoder_h_ #include "mozilla/dom/TextEncoderBase.h" #include "mozilla/dom/TextEncoderBinding.h" namespace mozilla { namespace dom { class TextEncoder MOZ_FINAL : public nsISupports, public nsWrapperCache, public TextEncoderBase { public: NS_DECL_CYCLE_COLLECTING_ISUPPORTS NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(TextEncoder) // The WebIDL constructor. static already_AddRefed Constructor(nsISupports* aGlobal, const nsAString& aEncoding, ErrorResult& aRv) { nsRefPtr txtEncoder = new TextEncoder(aGlobal); txtEncoder->Init(aEncoding, aRv); if (aRv.Failed()) { return nullptr; } return txtEncoder.forget(); } TextEncoder(nsISupports* aGlobal) : mGlobal(aGlobal) { MOZ_ASSERT(aGlobal); SetIsDOMBinding(); } virtual ~TextEncoder() {} virtual JSObject* WrapObject(JSContext* aCx, JSObject* aScope, bool* aTriedToWrap) MOZ_OVERRIDE { return TextEncoderBinding::Wrap(aCx, aScope, this, aTriedToWrap); } nsISupports* GetParentObject() { return mGlobal; } JSObject* Encode(JSContext* aCx, const nsAString& aString, const TextEncodeOptions& aOptions, ErrorResult& aRv) { return TextEncoderBase::Encode(aCx, aString, aOptions.mStream, aRv); } protected: virtual JSObject* CreateUint8Array(JSContext* aCx, char* aBuf, uint32_t aLen) MOZ_OVERRIDE { return Uint8Array::Create(aCx, this, aLen, reinterpret_cast(aBuf)); } private: nsCOMPtr mGlobal; }; } // dom } // mozilla #endif // mozilla_dom_textencoder_h_