Unreviewed, try to fix the open source macOS build after r250824

* bindings/js/JSDOMConvertRecord.h:

Add a missing #include for JSDOMGlobalObject. This file utilizes methods on JSDOMGlobalObject, but only ensures
that it has a forward declaration of JSDOMGlobalObject (by way of including JSDOMExceptionHandling.h through
JSDOMConvertBase.h).

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@250827 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index bdf35ec..c5483b5 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,5 +1,15 @@
 2019-10-08  Wenson Hsieh  <wenson_hsieh@apple.com>
 
+        Unreviewed, try to fix the open source macOS build after r250824
+
+        * bindings/js/JSDOMConvertRecord.h:
+
+        Add a missing #include for JSDOMGlobalObject. This file utilizes methods on JSDOMGlobalObject, but only ensures
+        that it has a forward declaration of JSDOMGlobalObject (by way of including JSDOMExceptionHandling.h through
+        JSDOMConvertBase.h).
+
+2019-10-08  Wenson Hsieh  <wenson_hsieh@apple.com>
+
         Unreviewed, update DerivedSources xcfilelists after r250816
 
         * DerivedSources-input.xcfilelist:
diff --git a/Source/WebCore/bindings/js/JSDOMConvertRecord.h b/Source/WebCore/bindings/js/JSDOMConvertRecord.h
index 86d32ee..bb8660b 100644
--- a/Source/WebCore/bindings/js/JSDOMConvertRecord.h
+++ b/Source/WebCore/bindings/js/JSDOMConvertRecord.h
@@ -27,6 +27,7 @@
 
 #include "IDLTypes.h"
 #include "JSDOMConvertStrings.h"
+#include "JSDOMGlobalObject.h"
 #include <JavaScriptCore/ObjectConstructor.h>
 
 namespace WebCore {