From 11ff9d0f17bc0cd49a61b7c4cc66036584d6d30b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 26 Jul 2020 19:37:56 +0200 Subject: LibWeb: Move DOM classes into the Web::DOM namespace LibWeb keeps growing and the Web namespace is filling up fast. Let's put DOM stuff into Web::DOM, just like we already started doing with SVG stuff in Web::SVG. --- Libraries/LibWeb/DOM/Comment.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Libraries/LibWeb/DOM/Comment.h') diff --git a/Libraries/LibWeb/DOM/Comment.h b/Libraries/LibWeb/DOM/Comment.h index c05f788754..f0cdc7907a 100644 --- a/Libraries/LibWeb/DOM/Comment.h +++ b/Libraries/LibWeb/DOM/Comment.h @@ -29,7 +29,7 @@ #include #include -namespace Web { +namespace Web::DOM { class Comment final : public CharacterData { public: @@ -41,6 +41,6 @@ public: } -AK_BEGIN_TYPE_TRAITS(Web::Comment) -static bool is_type(const Web::Node& node) { return node.is_comment(); } +AK_BEGIN_TYPE_TRAITS(Web::DOM::Comment) +static bool is_type(const Web::DOM::Node& node) { return node.is_comment(); } AK_END_TYPE_TRAITS() -- cgit v1.2.3