We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37b5edc commit a13a642Copy full SHA for a13a642
modules/javafx.web/src/main/native/Source/WTF/wtf/java/MainThreadJava.cpp
@@ -28,6 +28,7 @@
28
#include <wtf/java/JavaEnv.h>
29
#include <wtf/java/JavaRef.h>
30
#include <wtf/MainThread.h>
31
+#include <wtf/RunLoop.h>
32
33
namespace WTF {
34
void scheduleDispatchFunctionsOnMainThread()
@@ -49,6 +50,9 @@ void scheduleDispatchFunctionsOnMainThread()
49
50
51
void initializeMainThreadPlatform()
52
{
53
+#if OS(WINDOWS)
54
+ RunLoop::registerRunLoopMessageWindowClass();
55
+#endif
56
}
57
58
bool isMainThreadIfInitialized()
0 commit comments