2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-12-03 17:26:16 -08:00
|
|
|
#ifndef nsDOMSerializer_h_
|
|
|
|
#define nsDOMSerializer_h_
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsIDOMSerializer.h"
|
2012-12-03 17:26:16 -08:00
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
|
|
|
#include "mozilla/dom/XMLSerializerBinding.h"
|
2012-12-25 15:06:15 -08:00
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
|
|
|
|
class nsINode;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-12-03 17:26:16 -08:00
|
|
|
class nsDOMSerializer MOZ_FINAL : public nsIDOMSerializer,
|
|
|
|
public nsWrapperCache
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDOMSerializer();
|
|
|
|
|
2012-12-03 17:26:16 -08:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(nsDOMSerializer)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIDOMSerializer
|
|
|
|
NS_DECL_NSIDOMSERIALIZER
|
2012-12-03 17:26:16 -08:00
|
|
|
|
|
|
|
// WebIDL API
|
|
|
|
static already_AddRefed<nsDOMSerializer>
|
2012-12-03 08:07:49 -08:00
|
|
|
Constructor(const mozilla::dom::GlobalObject& aOwner,
|
|
|
|
mozilla::ErrorResult& rv)
|
2012-12-03 17:26:16 -08:00
|
|
|
{
|
2013-08-22 22:17:08 -07:00
|
|
|
nsRefPtr<nsDOMSerializer> domSerializer = new nsDOMSerializer(aOwner.GetAsSupports());
|
2012-12-03 17:26:16 -08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-04-08 15:27:18 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2012-12-03 17:26:16 -08:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 15:27:17 -07:00
|
|
|
return mozilla::dom::XMLSerializerBinding::Wrap(aCx, this);
|
2012-12-03 17:26:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2014-06-24 19:09:15 -07:00
|
|
|
virtual ~nsDOMSerializer();
|
|
|
|
|
2014-09-01 17:49:25 -07:00
|
|
|
explicit nsDOMSerializer(nsISupports* aOwner) : mOwner(aOwner)
|
2012-12-03 17:26:16 -08:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aOwner);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> mOwner;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|