diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/base/nsDOMSerializer.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | uxp-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/base/nsDOMSerializer.h')
-rw-r--r-- | dom/base/nsDOMSerializer.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/dom/base/nsDOMSerializer.h b/dom/base/nsDOMSerializer.h new file mode 100644 index 0000000000..efcf895e5e --- /dev/null +++ b/dom/base/nsDOMSerializer.h @@ -0,0 +1,69 @@ +/* -*- 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/. */ + +#ifndef nsDOMSerializer_h_ +#define nsDOMSerializer_h_ + +#include "nsIDOMSerializer.h" +#include "nsWrapperCache.h" +#include "mozilla/ErrorResult.h" +#include "mozilla/dom/XMLSerializerBinding.h" + +class nsINode; + +class nsDOMSerializer final : public nsIDOMSerializer, + public nsWrapperCache +{ +public: + nsDOMSerializer(); + + NS_DECL_CYCLE_COLLECTING_ISUPPORTS + NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(nsDOMSerializer) + + // nsIDOMSerializer + NS_DECL_NSIDOMSERIALIZER + + // WebIDL API + static already_AddRefed<nsDOMSerializer> + Constructor(const mozilla::dom::GlobalObject& aOwner, + mozilla::ErrorResult& rv) + { + RefPtr<nsDOMSerializer> domSerializer = new nsDOMSerializer(aOwner.GetAsSupports()); + return domSerializer.forget(); + } + + void + SerializeToString(nsINode& aRoot, nsAString& aStr, + mozilla::ErrorResult& rv); + + void + SerializeToStream(nsINode& aRoot, nsIOutputStream* aStream, + const nsAString& aCharset, mozilla::ErrorResult& rv); + + nsISupports* GetParentObject() const + { + return mOwner; + } + + virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override + { + return mozilla::dom::XMLSerializerBinding::Wrap(aCx, this, aGivenProto); + } + +private: + virtual ~nsDOMSerializer(); + + explicit nsDOMSerializer(nsISupports* aOwner) : mOwner(aOwner) + { + MOZ_ASSERT(aOwner); + } + + nsCOMPtr<nsISupports> mOwner; +}; + + +#endif + |