Title: [202836] trunk/Source/WebCore
Revision
202836
Author
[email protected]
Date
2016-07-05 15:25:34 -0700 (Tue, 05 Jul 2016)

Log Message

Fix Windows build.
https://bugs.webkit.org/show_bug.cgi?id=159103

* Modules/indexeddb/IDBActiveDOMObject.h:
(WebCore::IDBActiveDOMObject::callFunctionOnOriginThread):
WTF.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (202835 => 202836)


--- trunk/Source/WebCore/ChangeLog	2016-07-05 22:23:49 UTC (rev 202835)
+++ trunk/Source/WebCore/ChangeLog	2016-07-05 22:25:34 UTC (rev 202836)
@@ -1,3 +1,12 @@
+2016-07-05  Alex Christensen  <[email protected]>
+
+        Fix Windows build.
+        https://bugs.webkit.org/show_bug.cgi?id=159103
+
+        * Modules/indexeddb/IDBActiveDOMObject.h:
+        (WebCore::IDBActiveDOMObject::callFunctionOnOriginThread):
+        WTF.
+
 2016-07-05  Enrica Casucci  <[email protected]>
 
         HTMLAttachment elements don't receive clicks after the first on iOS.

Modified: trunk/Source/WebCore/Modules/indexeddb/IDBActiveDOMObject.h (202835 => 202836)


--- trunk/Source/WebCore/Modules/indexeddb/IDBActiveDOMObject.h	2016-07-05 22:23:49 UTC (rev 202835)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBActiveDOMObject.h	2016-07-05 22:25:34 UTC (rev 202836)
@@ -65,7 +65,7 @@
         context->postCrossThreadTask(object, method, arguments...);
     }
 
-    void callFunctionOnOriginThread(Function<void ()>&& function)
+    void callFunctionOnOriginThread(WTF::Function<void ()>&& function)
     {
         if (originThreadID() == currentThread()) {
             function();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to