Title: [202448] trunk/Source/WebCore
Revision
202448
Author
[email protected]
Date
2016-06-24 14:33:15 -0700 (Fri, 24 Jun 2016)

Log Message

Yeat another Windows build fix.

* dom/ActiveDOMCallbackMicrotask.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (202447 => 202448)


--- trunk/Source/WebCore/ChangeLog	2016-06-24 21:09:43 UTC (rev 202447)
+++ trunk/Source/WebCore/ChangeLog	2016-06-24 21:33:15 UTC (rev 202448)
@@ -1,5 +1,11 @@
 2016-06-24  Anders Carlsson  <[email protected]>
 
+        Yeat another Windows build fix.
+
+        * dom/ActiveDOMCallbackMicrotask.h:
+
+2016-06-24  Anders Carlsson  <[email protected]>
+
         Another Windows build fix.
 
         * page/FrameView.h:

Modified: trunk/Source/WebCore/dom/ActiveDOMCallbackMicrotask.h (202447 => 202448)


--- trunk/Source/WebCore/dom/ActiveDOMCallbackMicrotask.h	2016-06-24 21:09:43 UTC (rev 202447)
+++ trunk/Source/WebCore/dom/ActiveDOMCallbackMicrotask.h	2016-06-24 21:33:15 UTC (rev 202448)
@@ -34,7 +34,7 @@
 class ActiveDOMCallbackMicrotask final : public Microtask, public ActiveDOMCallback {
     WTF_MAKE_FAST_ALLOCATED;
 public:
-    WEBCORE_EXPORT ActiveDOMCallbackMicrotask(MicrotaskQueue&, ScriptExecutionContext&, Function<void()>&&);
+    WEBCORE_EXPORT ActiveDOMCallbackMicrotask(MicrotaskQueue&, ScriptExecutionContext&, WTF::Function<void ()>&&);
     WEBCORE_EXPORT virtual ~ActiveDOMCallbackMicrotask();
 
     Result run() override;
@@ -46,7 +46,7 @@
     // be accessed via the ScriptExecutionContext, which should hold a reference to the relevent
     // queue.
     MicrotaskQueue& m_queue;
-    Function<void()> m_task;
+    WTF::Function<void ()> m_task;
 };
 
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to