1 /*
2  * Copyright (c) 2009-2010 Mozilla Foundation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20  * DEALINGS IN THE SOFTWARE.
21  */
22 
23 /*
24  * THIS IS A GENERATED FILE. PLEASE DO NOT EDIT.
25  * Please edit StateSnapshot.java instead and regenerate.
26  */
27 
28 #define nsHtml5StateSnapshot_cpp__
29 
30 #include "nsAtom.h"
31 #include "nsHtml5AtomTable.h"
32 #include "nsHtml5String.h"
33 #include "nsNameSpaceManager.h"
34 #include "nsIContent.h"
35 #include "nsTraceRefcnt.h"
36 #include "jArray.h"
37 #include "nsHtml5ArrayCopy.h"
38 #include "nsAHtml5TreeBuilderState.h"
39 #include "nsGkAtoms.h"
40 #include "nsHtml5ByteReadable.h"
41 #include "nsHtml5Macros.h"
42 #include "nsIContentHandle.h"
43 #include "nsHtml5Portability.h"
44 #include "nsHtml5ContentCreatorFunction.h"
45 
46 #include "nsHtml5AttributeName.h"
47 #include "nsHtml5ElementName.h"
48 #include "nsHtml5Tokenizer.h"
49 #include "nsHtml5TreeBuilder.h"
50 #include "nsHtml5MetaScanner.h"
51 #include "nsHtml5StackNode.h"
52 #include "nsHtml5UTF16Buffer.h"
53 #include "nsHtml5Portability.h"
54 
55 #include "nsHtml5StateSnapshot.h"
56 
nsHtml5StateSnapshot(jArray<nsHtml5StackNode *,int32_t> stack,jArray<nsHtml5StackNode *,int32_t> listOfActiveFormattingElements,jArray<int32_t,int32_t> templateModeStack,nsIContentHandle * formPointer,nsIContentHandle * headPointer,nsIContentHandle * deepTreeSurrogateParent,int32_t mode,int32_t originalMode,bool framesetOk,bool needToDropLF,bool quirks)57 nsHtml5StateSnapshot::nsHtml5StateSnapshot(
58     jArray<nsHtml5StackNode*, int32_t> stack,
59     jArray<nsHtml5StackNode*, int32_t> listOfActiveFormattingElements,
60     jArray<int32_t, int32_t> templateModeStack, nsIContentHandle* formPointer,
61     nsIContentHandle* headPointer, nsIContentHandle* deepTreeSurrogateParent,
62     int32_t mode, int32_t originalMode, bool framesetOk, bool needToDropLF,
63     bool quirks)
64     : stack(stack),
65       listOfActiveFormattingElements(listOfActiveFormattingElements),
66       templateModeStack(templateModeStack),
67       formPointer(formPointer),
68       headPointer(headPointer),
69       deepTreeSurrogateParent(deepTreeSurrogateParent),
70       mode(mode),
71       originalMode(originalMode),
72       framesetOk(framesetOk),
73       needToDropLF(needToDropLF),
74       quirks(quirks) {
75   MOZ_COUNT_CTOR(nsHtml5StateSnapshot);
76 }
77 
getStack()78 jArray<nsHtml5StackNode*, int32_t> nsHtml5StateSnapshot::getStack() {
79   return stack;
80 }
81 
getTemplateModeStack()82 jArray<int32_t, int32_t> nsHtml5StateSnapshot::getTemplateModeStack() {
83   return templateModeStack;
84 }
85 
86 jArray<nsHtml5StackNode*, int32_t>
getListOfActiveFormattingElements()87 nsHtml5StateSnapshot::getListOfActiveFormattingElements() {
88   return listOfActiveFormattingElements;
89 }
90 
getFormPointer()91 nsIContentHandle* nsHtml5StateSnapshot::getFormPointer() { return formPointer; }
92 
getHeadPointer()93 nsIContentHandle* nsHtml5StateSnapshot::getHeadPointer() { return headPointer; }
94 
getDeepTreeSurrogateParent()95 nsIContentHandle* nsHtml5StateSnapshot::getDeepTreeSurrogateParent() {
96   return deepTreeSurrogateParent;
97 }
98 
getMode()99 int32_t nsHtml5StateSnapshot::getMode() { return mode; }
100 
getOriginalMode()101 int32_t nsHtml5StateSnapshot::getOriginalMode() { return originalMode; }
102 
isFramesetOk()103 bool nsHtml5StateSnapshot::isFramesetOk() { return framesetOk; }
104 
isNeedToDropLF()105 bool nsHtml5StateSnapshot::isNeedToDropLF() { return needToDropLF; }
106 
isQuirks()107 bool nsHtml5StateSnapshot::isQuirks() { return quirks; }
108 
getListOfActiveFormattingElementsLength()109 int32_t nsHtml5StateSnapshot::getListOfActiveFormattingElementsLength() {
110   return listOfActiveFormattingElements.length;
111 }
112 
getStackLength()113 int32_t nsHtml5StateSnapshot::getStackLength() { return stack.length; }
114 
getTemplateModeStackLength()115 int32_t nsHtml5StateSnapshot::getTemplateModeStackLength() {
116   return templateModeStack.length;
117 }
118 
~nsHtml5StateSnapshot()119 nsHtml5StateSnapshot::~nsHtml5StateSnapshot() {
120   MOZ_COUNT_DTOR(nsHtml5StateSnapshot);
121   for (int32_t i = 0; i < stack.length; i++) {
122     stack[i]->release(nullptr);
123   }
124   for (int32_t i = 0; i < listOfActiveFormattingElements.length; i++) {
125     if (listOfActiveFormattingElements[i]) {
126       listOfActiveFormattingElements[i]->release(nullptr);
127     }
128   }
129 }
130 
initializeStatics()131 void nsHtml5StateSnapshot::initializeStatics() {}
132 
releaseStatics()133 void nsHtml5StateSnapshot::releaseStatics() {}
134