Fix non-unified build by adding missing headers to JSKeyframeEffectCustom.cpp

Unreviewed non-unified build fix.

No new tests needed.

* bindings/js/JSKeyframeEffectCustom.cpp: Add missing headers Document.h,
JSDOMConvertObject.h, JSDOMConvertSequences.h, and JSDOMConvertStrings.h.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@288600 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index ded446b..a6d61f6 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2022-01-25  Adrian Perez de Castro  <aperez@igalia.com>
+
+        Fix non-unified build by adding missing headers to JSKeyframeEffectCustom.cpp
+
+        Unreviewed non-unified build fix.
+
+        No new tests needed.
+
+        * bindings/js/JSKeyframeEffectCustom.cpp: Add missing headers Document.h,
+        JSDOMConvertObject.h, JSDOMConvertSequences.h, and JSDOMConvertStrings.h.
+
 2022-01-25  Alexey Shvayka  <ashvayka@apple.com>
 
         [WebIDL] Remove the now-unused [CustomEnabled] extended attribute
diff --git a/Source/WebCore/bindings/js/JSKeyframeEffectCustom.cpp b/Source/WebCore/bindings/js/JSKeyframeEffectCustom.cpp
index fe39919..a6c9ab6 100644
--- a/Source/WebCore/bindings/js/JSKeyframeEffectCustom.cpp
+++ b/Source/WebCore/bindings/js/JSKeyframeEffectCustom.cpp
@@ -27,6 +27,10 @@
 #include "JSKeyframeEffect.h"
 
 #include "CSSPropertyNames.h"
+#include "Document.h"
+#include "JSDOMConvertObject.h"
+#include "JSDOMConvertSequences.h"
+#include "JSDOMConvertStrings.h"
 
 namespace WebCore {