1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:37:44 +00:00

LibWeb: Move QualifiedName into the Web::DOM namespace

This commit is contained in:
Andreas Kling 2022-02-18 21:00:52 +01:00
parent cdd1a9f128
commit 1b6ed558bb
174 changed files with 174 additions and 174 deletions

View file

@ -10,7 +10,7 @@
namespace Web::SVG {
SVGCircleElement::SVGCircleElement(DOM::Document& document, QualifiedName qualified_name)
SVGCircleElement::SVGCircleElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGGeometryElement(document, qualified_name)
{
}

View file

@ -14,7 +14,7 @@ class SVGCircleElement final : public SVGGeometryElement {
public:
using WrapperType = Bindings::SVGCircleElementWrapper;
SVGCircleElement(DOM::Document&, QualifiedName);
SVGCircleElement(DOM::Document&, DOM::QualifiedName);
virtual ~SVGCircleElement() override = default;
virtual void parse_attribute(FlyString const& name, String const& value) override;

View file

@ -8,7 +8,7 @@
namespace Web::SVG {
SVGElement::SVGElement(DOM::Document& document, QualifiedName qualified_name)
SVGElement::SVGElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: Element(document, move(qualified_name))
, m_dataset(HTML::DOMStringMap::create(*this))
{

View file

@ -20,7 +20,7 @@ public:
NonnullRefPtr<HTML::DOMStringMap> dataset() const { return m_dataset; }
protected:
SVGElement(DOM::Document&, QualifiedName);
SVGElement(DOM::Document&, DOM::QualifiedName);
NonnullRefPtr<HTML::DOMStringMap> m_dataset;
};

View file

@ -10,7 +10,7 @@
namespace Web::SVG {
SVGEllipseElement::SVGEllipseElement(DOM::Document& document, QualifiedName qualified_name)
SVGEllipseElement::SVGEllipseElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGGeometryElement(document, qualified_name)
{
}

View file

@ -14,7 +14,7 @@ class SVGEllipseElement final : public SVGGeometryElement {
public:
using WrapperType = Bindings::SVGEllipseElementWrapper;
SVGEllipseElement(DOM::Document&, QualifiedName);
SVGEllipseElement(DOM::Document&, DOM::QualifiedName);
virtual ~SVGEllipseElement() override = default;
virtual void parse_attribute(FlyString const& name, String const& value) override;

View file

@ -11,7 +11,7 @@
namespace Web::SVG {
SVGGElement::SVGGElement(DOM::Document& document, QualifiedName qualified_name)
SVGGElement::SVGGElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGGraphicsElement(document, move(qualified_name))
{
}

View file

@ -14,7 +14,7 @@ class SVGGElement final : public SVGGraphicsElement {
public:
using WrapperType = Bindings::SVGPathElementWrapper;
SVGGElement(DOM::Document&, QualifiedName);
SVGGElement(DOM::Document&, DOM::QualifiedName);
virtual ~SVGGElement() override = default;
virtual RefPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;

View file

@ -9,7 +9,7 @@
namespace Web::SVG {
SVGGeometryElement::SVGGeometryElement(DOM::Document& document, QualifiedName qualified_name)
SVGGeometryElement::SVGGeometryElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGGraphicsElement(document, move(qualified_name))
{
}

View file

@ -20,7 +20,7 @@ public:
virtual Gfx::Path& get_path() = 0;
protected:
SVGGeometryElement(DOM::Document& document, QualifiedName qualified_name);
SVGGeometryElement(DOM::Document& document, DOM::QualifiedName qualified_name);
};
}

View file

@ -10,7 +10,7 @@
namespace Web::SVG {
SVGGraphicsElement::SVGGraphicsElement(DOM::Document& document, QualifiedName qualified_name)
SVGGraphicsElement::SVGGraphicsElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGElement(document, move(qualified_name))
{
}

View file

@ -18,7 +18,7 @@ class SVGGraphicsElement : public SVGElement {
public:
using WrapperType = Bindings::SVGGraphicsElementWrapper;
SVGGraphicsElement(DOM::Document&, QualifiedName);
SVGGraphicsElement(DOM::Document&, DOM::QualifiedName);
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;

View file

@ -10,7 +10,7 @@
namespace Web::SVG {
SVGLineElement::SVGLineElement(DOM::Document& document, QualifiedName qualified_name)
SVGLineElement::SVGLineElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGGeometryElement(document, qualified_name)
{
}

View file

@ -14,7 +14,7 @@ class SVGLineElement final : public SVGGeometryElement {
public:
using WrapperType = Bindings::SVGLineElementWrapper;
SVGLineElement(DOM::Document&, QualifiedName);
SVGLineElement(DOM::Document&, DOM::QualifiedName);
virtual ~SVGLineElement() override = default;
virtual void parse_attribute(FlyString const& name, String const& value) override;

View file

@ -83,7 +83,7 @@ namespace Web::SVG {
}
}
SVGPathElement::SVGPathElement(DOM::Document& document, QualifiedName qualified_name)
SVGPathElement::SVGPathElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGGeometryElement(document, move(qualified_name))
{
}

View file

@ -17,7 +17,7 @@ class SVGPathElement final : public SVGGeometryElement {
public:
using WrapperType = Bindings::SVGPathElementWrapper;
SVGPathElement(DOM::Document&, QualifiedName);
SVGPathElement(DOM::Document&, DOM::QualifiedName);
virtual ~SVGPathElement() override = default;
virtual void parse_attribute(const FlyString& name, const String& value) override;

View file

@ -10,7 +10,7 @@
namespace Web::SVG {
SVGPolygonElement::SVGPolygonElement(DOM::Document& document, QualifiedName qualified_name)
SVGPolygonElement::SVGPolygonElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGGeometryElement(document, qualified_name)
{
}

View file

@ -14,7 +14,7 @@ class SVGPolygonElement final : public SVGGeometryElement {
public:
using WrapperType = Bindings::SVGPolygonElementWrapper;
SVGPolygonElement(DOM::Document&, QualifiedName);
SVGPolygonElement(DOM::Document&, DOM::QualifiedName);
virtual ~SVGPolygonElement() override = default;
virtual void parse_attribute(FlyString const& name, String const& value) override;

View file

@ -10,7 +10,7 @@
namespace Web::SVG {
SVGPolylineElement::SVGPolylineElement(DOM::Document& document, QualifiedName qualified_name)
SVGPolylineElement::SVGPolylineElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGGeometryElement(document, qualified_name)
{
}

View file

@ -14,7 +14,7 @@ class SVGPolylineElement final : public SVGGeometryElement {
public:
using WrapperType = Bindings::SVGPolylineElementWrapper;
SVGPolylineElement(DOM::Document&, QualifiedName);
SVGPolylineElement(DOM::Document&, DOM::QualifiedName);
virtual ~SVGPolylineElement() override = default;
virtual void parse_attribute(FlyString const& name, String const& value) override;

View file

@ -10,7 +10,7 @@
namespace Web::SVG {
SVGRectElement::SVGRectElement(DOM::Document& document, QualifiedName qualified_name)
SVGRectElement::SVGRectElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGGeometryElement(document, qualified_name)
{
}

View file

@ -15,7 +15,7 @@ class SVGRectElement final : public SVGGeometryElement {
public:
using WrapperType = Bindings::SVGRectElementWrapper;
SVGRectElement(DOM::Document&, QualifiedName);
SVGRectElement(DOM::Document&, DOM::QualifiedName);
virtual ~SVGRectElement() override = default;
virtual void parse_attribute(FlyString const& name, String const& value) override;

View file

@ -15,7 +15,7 @@
namespace Web::SVG {
SVGSVGElement::SVGSVGElement(DOM::Document& document, QualifiedName qualified_name)
SVGSVGElement::SVGSVGElement(DOM::Document& document, DOM::QualifiedName qualified_name)
: SVGGraphicsElement(document, qualified_name)
{
}

View file

@ -16,7 +16,7 @@ class SVGSVGElement final : public SVGGraphicsElement {
public:
using WrapperType = Bindings::SVGSVGElementWrapper;
SVGSVGElement(DOM::Document&, QualifiedName);
SVGSVGElement(DOM::Document&, DOM::QualifiedName);
virtual RefPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;