mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-13 19:41:41 +00:00

This patch does these things: 1. it moves nsScriptElement, nsScriptLoader, ScriptSettings, nsIScriptElement and nsIScriptLoaderObserver in dom/script 2. it renames nsScriptElement to mozilla::dom::ScriptElement 3. it renames nsScriptLaoder to mozilla::dom::ScriptLoader --HG-- rename : dom/base/nsScriptElement.cpp => dom/script/ScriptElement.cpp rename : dom/base/nsScriptElement.h => dom/script/ScriptElement.h rename : dom/base/nsScriptLoader.cpp => dom/script/ScriptLoader.cpp rename : dom/base/nsScriptLoader.h => dom/script/ScriptLoader.h rename : dom/base/ScriptSettings.cpp => dom/script/ScriptSettings.cpp rename : dom/base/ScriptSettings.h => dom/script/ScriptSettings.h rename : dom/base/nsIScriptElement.h => dom/script/nsIScriptElement.h rename : dom/base/nsIScriptLoaderObserver.idl => dom/script/nsIScriptLoaderObserver.idl
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 sw=2 et tw=78: */
|
|
/* 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/. */
|
|
|
|
#include "nsHtml5OplessBuilder.h"
|
|
|
|
#include "mozilla/css/Loader.h"
|
|
#include "mozilla/dom/ScriptLoader.h"
|
|
#include "nsIDocShell.h"
|
|
#include "nsIHTMLDocument.h"
|
|
|
|
nsHtml5OplessBuilder::nsHtml5OplessBuilder()
|
|
: nsHtml5DocumentBuilder(true)
|
|
{
|
|
}
|
|
|
|
nsHtml5OplessBuilder::~nsHtml5OplessBuilder()
|
|
{
|
|
}
|
|
|
|
void
|
|
nsHtml5OplessBuilder::Start()
|
|
{
|
|
mFlushState = eInFlush;
|
|
BeginDocUpdate();
|
|
}
|
|
|
|
void
|
|
nsHtml5OplessBuilder::Finish()
|
|
{
|
|
EndDocUpdate();
|
|
DropParserAndPerfHint();
|
|
mScriptLoader = nullptr;
|
|
mDocument = nullptr;
|
|
mNodeInfoManager = nullptr;
|
|
mCSSLoader = nullptr;
|
|
mDocumentURI = nullptr;
|
|
mDocShell = nullptr;
|
|
mOwnedElements.Clear();
|
|
mFlushState = eNotFlushing;
|
|
}
|
|
|
|
void
|
|
nsHtml5OplessBuilder::SetParser(nsParserBase* aParser)
|
|
{
|
|
mParser = aParser;
|
|
}
|