tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nsHtml5StateSnapshot.cpp (3858B)


      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 "nsHtml5AttributeName.h"
     31 #include "nsHtml5ElementName.h"
     32 #include "nsHtml5Tokenizer.h"
     33 #include "nsHtml5TreeBuilder.h"
     34 #include "nsHtml5StackNode.h"
     35 #include "nsHtml5UTF16Buffer.h"
     36 #include "nsHtml5Portability.h"
     37 
     38 #include "nsHtml5StateSnapshot.h"
     39 
     40 nsHtml5StateSnapshot::nsHtml5StateSnapshot(
     41    jArray<nsHtml5StackNode*, int32_t> stack,
     42    jArray<nsHtml5StackNode*, int32_t> listOfActiveFormattingElements,
     43    jArray<int32_t, int32_t> templateModeStack, nsIContentHandle* formPointer,
     44    nsIContentHandle* headPointer, int32_t mode, int32_t originalMode,
     45    bool framesetOk, bool needToDropLF, bool quirks)
     46    : stack(stack),
     47      listOfActiveFormattingElements(listOfActiveFormattingElements),
     48      templateModeStack(templateModeStack),
     49      formPointer(formPointer),
     50      headPointer(headPointer),
     51      mode(mode),
     52      originalMode(originalMode),
     53      framesetOk(framesetOk),
     54      needToDropLF(needToDropLF),
     55      quirks(quirks) {
     56  MOZ_COUNT_CTOR(nsHtml5StateSnapshot);
     57 }
     58 
     59 jArray<nsHtml5StackNode*, int32_t> nsHtml5StateSnapshot::getStack() {
     60  return stack;
     61 }
     62 
     63 jArray<int32_t, int32_t> nsHtml5StateSnapshot::getTemplateModeStack() {
     64  return templateModeStack;
     65 }
     66 
     67 jArray<nsHtml5StackNode*, int32_t>
     68 nsHtml5StateSnapshot::getListOfActiveFormattingElements() {
     69  return listOfActiveFormattingElements;
     70 }
     71 
     72 nsIContentHandle* nsHtml5StateSnapshot::getFormPointer() { return formPointer; }
     73 
     74 nsIContentHandle* nsHtml5StateSnapshot::getHeadPointer() { return headPointer; }
     75 
     76 int32_t nsHtml5StateSnapshot::getMode() { return mode; }
     77 
     78 int32_t nsHtml5StateSnapshot::getOriginalMode() { return originalMode; }
     79 
     80 bool nsHtml5StateSnapshot::isFramesetOk() { return framesetOk; }
     81 
     82 bool nsHtml5StateSnapshot::isNeedToDropLF() { return needToDropLF; }
     83 
     84 bool nsHtml5StateSnapshot::isQuirks() { return quirks; }
     85 
     86 int32_t nsHtml5StateSnapshot::getListOfActiveFormattingElementsLength() {
     87  return listOfActiveFormattingElements.length;
     88 }
     89 
     90 int32_t nsHtml5StateSnapshot::getStackLength() { return stack.length; }
     91 
     92 int32_t nsHtml5StateSnapshot::getTemplateModeStackLength() {
     93  return templateModeStack.length;
     94 }
     95 
     96 nsHtml5StateSnapshot::~nsHtml5StateSnapshot() {
     97  MOZ_COUNT_DTOR(nsHtml5StateSnapshot);
     98  for (int32_t i = 0; i < stack.length; i++) {
     99    stack[i]->release(nullptr);
    100  }
    101  for (int32_t i = 0; i < listOfActiveFormattingElements.length; i++) {
    102    if (listOfActiveFormattingElements[i]) {
    103      listOfActiveFormattingElements[i]->release(nullptr);
    104    }
    105  }
    106 }
    107 
    108 void nsHtml5StateSnapshot::initializeStatics() {}
    109 
    110 void nsHtml5StateSnapshot::releaseStatics() {}