Title: [233144] trunk/Source/WebCore
Revision
233144
Author
ddkil...@apple.com
Date
2018-06-25 05:43:00 -0700 (Mon, 25 Jun 2018)

Log Message

REGRESSION (r233140): Windows build failure due to incomplete DocumentAnimationScheduler type
<https://webkit.org/b/186997>

* dom/Document.cpp:
* dom/Document.h:
- Attempt to fix Windows build failure by moving include of
  DocumentAnimationScheduler.h from Document.cpp to Document.h.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (233143 => 233144)


--- trunk/Source/WebCore/ChangeLog	2018-06-25 10:58:36 UTC (rev 233143)
+++ trunk/Source/WebCore/ChangeLog	2018-06-25 12:43:00 UTC (rev 233144)
@@ -1,3 +1,13 @@
+2018-06-25  David Kilzer  <ddkil...@apple.com>
+
+        REGRESSION (r233140): Windows build failure due to incomplete DocumentAnimationScheduler type
+        <https://webkit.org/b/186997>
+
+        * dom/Document.cpp:
+        * dom/Document.h:
+        - Attempt to fix Windows build failure by moving include of
+          DocumentAnimationScheduler.h from Document.cpp to Document.h.
+
 2018-06-25  Philippe Normand  <pnorm...@igalia.com>
 
         [GStreamer] Remove useless workaround

Modified: trunk/Source/WebCore/dom/Document.cpp (233143 => 233144)


--- trunk/Source/WebCore/dom/Document.cpp	2018-06-25 10:58:36 UTC (rev 233143)
+++ trunk/Source/WebCore/dom/Document.cpp	2018-06-25 12:43:00 UTC (rev 233144)
@@ -56,7 +56,6 @@
 #include "DOMWindow.h"
 #include "DateComponents.h"
 #include "DebugPageOverlays.h"
-#include "DocumentAnimationScheduler.h"
 #include "DocumentLoader.h"
 #include "DocumentMarkerController.h"
 #include "DocumentSharedObjectPool.h"

Modified: trunk/Source/WebCore/dom/Document.h (233143 => 233144)


--- trunk/Source/WebCore/dom/Document.h	2018-06-25 10:58:36 UTC (rev 233143)
+++ trunk/Source/WebCore/dom/Document.h	2018-06-25 12:43:00 UTC (rev 233144)
@@ -30,6 +30,7 @@
 #include "Color.h"
 #include "ContainerNode.h"
 #include "DisabledAdaptations.h"
+#include "DocumentAnimationScheduler.h"
 #include "DocumentEventQueue.h"
 #include "DocumentIdentifier.h"
 #include "DocumentTiming.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to