parser/html/nsHtml5StateSnapshot.cpp

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     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  */
    23 /*
    24  * THIS IS A GENERATED FILE. PLEASE DO NOT EDIT.
    25  * Please edit StateSnapshot.java instead and regenerate.
    26  */
    28 #define nsHtml5StateSnapshot_cpp__
    30 #include "nsIAtom.h"
    31 #include "nsHtml5AtomTable.h"
    32 #include "nsString.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 "nsHtml5Atoms.h"
    40 #include "nsHtml5ByteReadable.h"
    41 #include "nsIUnicodeDecoder.h"
    42 #include "nsHtml5Macros.h"
    43 #include "nsIContentHandle.h"
    45 #include "nsHtml5Tokenizer.h"
    46 #include "nsHtml5TreeBuilder.h"
    47 #include "nsHtml5MetaScanner.h"
    48 #include "nsHtml5AttributeName.h"
    49 #include "nsHtml5ElementName.h"
    50 #include "nsHtml5HtmlAttributes.h"
    51 #include "nsHtml5StackNode.h"
    52 #include "nsHtml5UTF16Buffer.h"
    53 #include "nsHtml5Portability.h"
    55 #include "nsHtml5StateSnapshot.h"
    58 nsHtml5StateSnapshot::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)
    59   : stack(stack),
    60     listOfActiveFormattingElements(listOfActiveFormattingElements),
    61     templateModeStack(templateModeStack),
    62     formPointer(formPointer),
    63     headPointer(headPointer),
    64     deepTreeSurrogateParent(deepTreeSurrogateParent),
    65     mode(mode),
    66     originalMode(originalMode),
    67     framesetOk(framesetOk),
    68     needToDropLF(needToDropLF),
    69     quirks(quirks)
    70 {
    71   MOZ_COUNT_CTOR(nsHtml5StateSnapshot);
    72 }
    74 jArray<nsHtml5StackNode*,int32_t> 
    75 nsHtml5StateSnapshot::getStack()
    76 {
    77   return stack;
    78 }
    80 jArray<int32_t,int32_t> 
    81 nsHtml5StateSnapshot::getTemplateModeStack()
    82 {
    83   return templateModeStack;
    84 }
    86 jArray<nsHtml5StackNode*,int32_t> 
    87 nsHtml5StateSnapshot::getListOfActiveFormattingElements()
    88 {
    89   return listOfActiveFormattingElements;
    90 }
    92 nsIContentHandle* 
    93 nsHtml5StateSnapshot::getFormPointer()
    94 {
    95   return formPointer;
    96 }
    98 nsIContentHandle* 
    99 nsHtml5StateSnapshot::getHeadPointer()
   100 {
   101   return headPointer;
   102 }
   104 nsIContentHandle* 
   105 nsHtml5StateSnapshot::getDeepTreeSurrogateParent()
   106 {
   107   return deepTreeSurrogateParent;
   108 }
   110 int32_t 
   111 nsHtml5StateSnapshot::getMode()
   112 {
   113   return mode;
   114 }
   116 int32_t 
   117 nsHtml5StateSnapshot::getOriginalMode()
   118 {
   119   return originalMode;
   120 }
   122 bool 
   123 nsHtml5StateSnapshot::isFramesetOk()
   124 {
   125   return framesetOk;
   126 }
   128 bool 
   129 nsHtml5StateSnapshot::isNeedToDropLF()
   130 {
   131   return needToDropLF;
   132 }
   134 bool 
   135 nsHtml5StateSnapshot::isQuirks()
   136 {
   137   return quirks;
   138 }
   140 int32_t 
   141 nsHtml5StateSnapshot::getListOfActiveFormattingElementsLength()
   142 {
   143   return listOfActiveFormattingElements.length;
   144 }
   146 int32_t 
   147 nsHtml5StateSnapshot::getStackLength()
   148 {
   149   return stack.length;
   150 }
   152 int32_t 
   153 nsHtml5StateSnapshot::getTemplateModeStackLength()
   154 {
   155   return templateModeStack.length;
   156 }
   159 nsHtml5StateSnapshot::~nsHtml5StateSnapshot()
   160 {
   161   MOZ_COUNT_DTOR(nsHtml5StateSnapshot);
   162   for (int32_t i = 0; i < stack.length; i++) {
   163     stack[i]->release();
   164   }
   165   for (int32_t i = 0; i < listOfActiveFormattingElements.length; i++) {
   166     if (listOfActiveFormattingElements[i]) {
   167       listOfActiveFormattingElements[i]->release();
   168     }
   169   }
   170 }
   172 void
   173 nsHtml5StateSnapshot::initializeStatics()
   174 {
   175 }
   177 void
   178 nsHtml5StateSnapshot::releaseStatics()
   179 {
   180 }

mercurial