diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-15 00:13:44 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-15 00:13:44 +0100 |
commit | 69400c2ca14125c606f31543d7e0f449687cf628 (patch) | |
tree | 99b78d5f6313f2851d42b40c22d3a264df58bc12 /Libraries/LibHTML | |
parent | 6a3cd11a8035747c05e781064a8a0084736908c8 (diff) | |
download | serenity-69400c2ca14125c606f31543d7e0f449687cf628.zip |
LibCore: Replace manual forward declarations with <LibCore/Forward.h>
Diffstat (limited to 'Libraries/LibHTML')
-rw-r--r-- | Libraries/LibHTML/DOM/HTMLBlinkElement.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Libraries/LibHTML/DOM/HTMLBlinkElement.h b/Libraries/LibHTML/DOM/HTMLBlinkElement.h index 8e9594bbf3..3cb5b350d4 100644 --- a/Libraries/LibHTML/DOM/HTMLBlinkElement.h +++ b/Libraries/LibHTML/DOM/HTMLBlinkElement.h @@ -26,12 +26,9 @@ #pragma once +#include <LibCore/Forward.h> #include <LibHTML/DOM/HTMLElement.h> -namespace Core { -class Timer; -} - class HTMLBlinkElement : public HTMLElement { public: HTMLBlinkElement(Document&, const String& tag_name); |