2015-05-03 12:32:37 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class nsDOMSerializer final : public nsIDOMSerializer,
|
2015-03-27 11:52:19 -07:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2012-12-03 17:26:16 -08:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 07:13:33 -07:00
|
|
|
return mozilla::dom::XMLSerializerBinding::Wrap(aCx, this, aGivenProto);
|
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
|
|
|
|
|