mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:27:44 +00:00
LibWeb: Move CSS Parser into new Web::CSS::Parser namespace
The goal here is to move the parser-internal classes into this namespace so they can have more convenient names without causing collisions. The Parser itself won't collide, and would be more convenient to just remain `CSS::Parser`, but having a namespace and a class with the same name makes C++ unhappy.
This commit is contained in:
parent
1304bf5a21
commit
c449cabae3
23 changed files with 61 additions and 58 deletions
|
@ -98,6 +98,10 @@ enum class PropertyID;
|
|||
enum class ValueID;
|
||||
}
|
||||
|
||||
namespace Web::CSS::Parser {
|
||||
class Parser;
|
||||
}
|
||||
|
||||
namespace Web::DOM {
|
||||
class AbstractRange;
|
||||
class AbortController;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue