2006-04-20 03:37:39 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2006-04-20 03:36:50 +00:00
|
|
|
|
2012-12-04 01:26:16 +00:00
|
|
|
#ifndef nsDOMSerializer_h_
|
|
|
|
#define nsDOMSerializer_h_
|
2006-04-20 03:36:50 +00:00
|
|
|
|
|
|
|
#include "nsIDOMSerializer.h"
|
2012-12-04 01:26:16 +00:00
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
|
|
|
#include "mozilla/dom/XMLSerializerBinding.h"
|
2012-12-25 23:06:15 +00:00
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
|
|
|
|
class nsINode;
|
2006-04-20 03:36:50 +00:00
|
|
|
|
2012-12-04 01:26:16 +00:00
|
|
|
class nsDOMSerializer MOZ_FINAL : public nsIDOMSerializer,
|
|
|
|
public nsWrapperCache
|
2006-04-20 03:36:53 +00:00
|
|
|
{
|
2006-04-20 03:36:50 +00:00
|
|
|
public:
|
|
|
|
nsDOMSerializer();
|
|
|
|
|
2012-12-04 01:26:16 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(nsDOMSerializer)
|
2006-04-20 03:36:50 +00:00
|
|
|
|
|
|
|
// nsIDOMSerializer
|
2006-04-20 03:38:51 +00:00
|
|
|
NS_DECL_NSIDOMSERIALIZER
|
2012-12-04 01:26:16 +00:00
|
|
|
|
|
|
|
// WebIDL API
|
|
|
|
static already_AddRefed<nsDOMSerializer>
|
2012-12-03 16:07:49 +00:00
|
|
|
Constructor(const mozilla::dom::GlobalObject& aOwner,
|
|
|
|
mozilla::ErrorResult& rv)
|
2012-12-04 01:26:16 +00:00
|
|
|
{
|
2013-08-23 05:17:08 +00:00
|
|
|
nsRefPtr<nsDOMSerializer> domSerializer = new nsDOMSerializer(aOwner.GetAsSupports());
|
2012-12-04 01:26:16 +00: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 22:27:18 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2012-12-04 01:26:16 +00: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 22:27:17 +00:00
|
|
|
return mozilla::dom::XMLSerializerBinding::Wrap(aCx, this);
|
2012-12-04 01:26:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2014-06-25 02:09:15 +00:00
|
|
|
virtual ~nsDOMSerializer();
|
|
|
|
|
2014-09-02 00:49:25 +00:00
|
|
|
explicit nsDOMSerializer(nsISupports* aOwner) : mOwner(aOwner)
|
2012-12-04 01:26:16 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aOwner);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupports> mOwner;
|
2006-04-20 03:36:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|