summaryrefslogtreecommitdiffstats
path: root/dom/base/nsIContentSerializer.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /dom/base/nsIContentSerializer.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/base/nsIContentSerializer.h')
-rw-r--r--dom/base/nsIContentSerializer.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/dom/base/nsIContentSerializer.h b/dom/base/nsIContentSerializer.h
new file mode 100644
index 000000000..f023cbc90
--- /dev/null
+++ b/dom/base/nsIContentSerializer.h
@@ -0,0 +1,76 @@
+/* -*- 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 nsIContentSerializer_h
+#define nsIContentSerializer_h
+
+#include "nsISupports.h"
+
+class nsIContent;
+class nsIDocument;
+class nsAString;
+
+namespace mozilla {
+namespace dom {
+class Element;
+} // namespace dom
+} // namespace mozilla
+
+#define NS_ICONTENTSERIALIZER_IID \
+{ 0xb1ee32f2, 0xb8c4, 0x49b9, \
+ { 0x93, 0xdf, 0xb6, 0xfa, 0xb5, 0xd5, 0x46, 0x88 } }
+
+class nsIContentSerializer : public nsISupports {
+ public:
+
+ NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICONTENTSERIALIZER_IID)
+
+ NS_IMETHOD Init(uint32_t flags, uint32_t aWrapColumn,
+ const char* aCharSet, bool aIsCopying,
+ bool aIsWholeDocument) = 0;
+
+ NS_IMETHOD AppendText(nsIContent* aText, int32_t aStartOffset,
+ int32_t aEndOffset, nsAString& aStr) = 0;
+
+ NS_IMETHOD AppendCDATASection(nsIContent* aCDATASection,
+ int32_t aStartOffset, int32_t aEndOffset,
+ nsAString& aStr) = 0;
+
+ NS_IMETHOD AppendProcessingInstruction(nsIContent* aPI,
+ int32_t aStartOffset,
+ int32_t aEndOffset,
+ nsAString& aStr) = 0;
+
+ NS_IMETHOD AppendComment(nsIContent* aComment, int32_t aStartOffset,
+ int32_t aEndOffset, nsAString& aStr) = 0;
+
+ NS_IMETHOD AppendDoctype(nsIContent *aDoctype,
+ nsAString& aStr) = 0;
+
+ NS_IMETHOD AppendElementStart(mozilla::dom::Element* aElement,
+ mozilla::dom::Element* aOriginalElement,
+ nsAString& aStr) = 0;
+
+ NS_IMETHOD AppendElementEnd(mozilla::dom::Element* aElement,
+ nsAString& aStr) = 0;
+
+ NS_IMETHOD Flush(nsAString& aStr) = 0;
+
+ /**
+ * Append any items in the beginning of the document that won't be
+ * serialized by other methods. XML declaration is the most likely
+ * thing this method can produce.
+ */
+ NS_IMETHOD AppendDocumentStart(nsIDocument *aDocument,
+ nsAString& aStr) = 0;
+};
+
+NS_DEFINE_STATIC_IID_ACCESSOR(nsIContentSerializer, NS_ICONTENTSERIALIZER_IID)
+
+#define NS_CONTENTSERIALIZER_CONTRACTID_PREFIX \
+"@mozilla.org/layout/contentserializer;1?mimetype="
+
+#endif /* nsIContentSerializer_h */