Title: [210685] trunk/Source/WebCore
Revision
210685
Author
[email protected]
Date
2017-01-12 16:11:56 -0800 (Thu, 12 Jan 2017)

Log Message

Unreviewed EFL/GTK build fix after r210684.

* Modules/indexeddb/server/UniqueIDBDatabase.cpp:
(WebCore::IDBServer::UniqueIDBDatabase::performPrefetchCursor):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (210684 => 210685)


--- trunk/Source/WebCore/ChangeLog	2017-01-12 23:48:38 UTC (rev 210684)
+++ trunk/Source/WebCore/ChangeLog	2017-01-13 00:11:56 UTC (rev 210685)
@@ -1,3 +1,10 @@
+2017-01-12  Chris Dumez  <[email protected]>
+
+        Unreviewed EFL/GTK build fix after r210684.
+
+        * Modules/indexeddb/server/UniqueIDBDatabase.cpp:
+        (WebCore::IDBServer::UniqueIDBDatabase::performPrefetchCursor):
+
 2017-01-12  Brady Eidson  <[email protected]>
 
         REGRESSION (r209977): Crash in UniqueIDBDatabase::executeNextDatabaseTask.

Modified: trunk/Source/WebCore/Modules/indexeddb/server/UniqueIDBDatabase.cpp (210684 => 210685)


--- trunk/Source/WebCore/Modules/indexeddb/server/UniqueIDBDatabase.cpp	2017-01-12 23:48:38 UTC (rev 210684)
+++ trunk/Source/WebCore/Modules/indexeddb/server/UniqueIDBDatabase.cpp	2017-01-13 00:11:56 UTC (rev 210685)
@@ -1253,7 +1253,7 @@
     if (m_backingStore->prefetchCursor(transactionIdentifier, cursorIdentifier))
         postDatabaseTask(createCrossThreadTask(*this, &UniqueIDBDatabase::performPrefetchCursor, transactionIdentifier, cursorIdentifier));
     else
-        postDatabaseTaskReply(Function<void ()>([prefetchProtector = m_prefetchProtectors.take(cursorIdentifier)]() { }));
+        postDatabaseTaskReply(WTF::Function<void ()>([prefetchProtector = m_prefetchProtectors.take(cursorIdentifier)]() { }));
 }
 
 void UniqueIDBDatabase::didPerformIterateCursor(uint64_t callbackIdentifier, const IDBError& error, const IDBGetResult& result)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to