mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:57:45 +00:00
LibWeb: Stop manually forward-declaring types in CSS Parser.h
This commit is contained in:
parent
b7453eafbb
commit
1304bf5a21
2 changed files with 5 additions and 6 deletions
|
@ -28,15 +28,10 @@
|
||||||
#include <LibWeb/CSS/StyleValue.h>
|
#include <LibWeb/CSS/StyleValue.h>
|
||||||
#include <LibWeb/CSS/Supports.h>
|
#include <LibWeb/CSS/Supports.h>
|
||||||
#include <LibWeb/CSS/UnicodeRange.h>
|
#include <LibWeb/CSS/UnicodeRange.h>
|
||||||
|
#include <LibWeb/Forward.h>
|
||||||
|
|
||||||
namespace Web::CSS {
|
namespace Web::CSS {
|
||||||
|
|
||||||
class CSSStyleSheet;
|
|
||||||
class CSSRule;
|
|
||||||
class CSSStyleRule;
|
|
||||||
struct StyleProperty;
|
|
||||||
enum class PropertyID;
|
|
||||||
|
|
||||||
class ParsingContext {
|
class ParsingContext {
|
||||||
public:
|
public:
|
||||||
ParsingContext() = default;
|
ParsingContext() = default;
|
||||||
|
|
|
@ -92,6 +92,10 @@ class TransformationStyleValue;
|
||||||
class UnicodeRange;
|
class UnicodeRange;
|
||||||
class UnresolvedStyleValue;
|
class UnresolvedStyleValue;
|
||||||
class UnsetStyleValue;
|
class UnsetStyleValue;
|
||||||
|
|
||||||
|
enum class MediaFeatureID;
|
||||||
|
enum class PropertyID;
|
||||||
|
enum class ValueID;
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace Web::DOM {
|
namespace Web::DOM {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue