chromium/third_party/blink/renderer/core/script/xml_parser_script_runner.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/script/xml_parser_script_runner.h"

#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/inspector/console_message.h"
#include "third_party/blink/renderer/core/script/classic_pending_script.h"
#include "third_party/blink/renderer/core/script/script_loader.h"
#include "third_party/blink/renderer/core/script/xml_parser_script_runner_host.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"

namespace blink {

// Spec links:
// <specdef label="Parsing"
// href="https://html.spec.whatwg.org/C/#parsing-xhtml-documents">
// <specdef label="Prepare"
// href="https://html.spec.whatwg.org/C/#prepare-the-script-element">

XMLParserScriptRunner::XMLParserScriptRunner(XMLParserScriptRunnerHost* host)
    :{}

XMLParserScriptRunner::~XMLParserScriptRunner() {}

void XMLParserScriptRunner::Trace(Visitor* visitor) const {}

void XMLParserScriptRunner::Detach() {}

void XMLParserScriptRunner::PendingScriptFinished(
    PendingScript* unused_pending_script) {}

void XMLParserScriptRunner::ProcessScriptElement(
    Document& document,
    Element* element,
    TextPosition script_start_position) {}

}  // namespace blink