Title: [158218] trunk/Source/WebCore
- Revision
- 158218
- Author
- [email protected]
- Date
- 2013-10-29 13:41:40 -0700 (Tue, 29 Oct 2013)
Log Message
Get IDBTransactionBackendLevelDBOperations *almost* ready to go cross platform.
https://bugs.webkit.org/show_bug.cgi?id=123451
Reviewed by NOBODY (My bad, non-reviewed, non-building code got in there)
* Modules/indexeddb/IDBDatabaseBackendImpl.cpp:
(WebCore::IDBDatabaseBackendImpl::processPendingCalls): Remove the auto line I was trying from review feedback.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (158217 => 158218)
--- trunk/Source/WebCore/ChangeLog 2013-10-29 20:38:40 UTC (rev 158217)
+++ trunk/Source/WebCore/ChangeLog 2013-10-29 20:41:40 UTC (rev 158218)
@@ -3,6 +3,16 @@
Get IDBTransactionBackendLevelDBOperations *almost* ready to go cross platform.
https://bugs.webkit.org/show_bug.cgi?id=123451
+ Reviewed by NOBODY (My bad, non-reviewed, non-building code got in there)
+
+ * Modules/indexeddb/IDBDatabaseBackendImpl.cpp:
+ (WebCore::IDBDatabaseBackendImpl::processPendingCalls): Remove the auto line I was trying from review feedback.
+
+2013-10-29 Brady Eidson <[email protected]>
+
+ Get IDBTransactionBackendLevelDBOperations *almost* ready to go cross platform.
+ https://bugs.webkit.org/show_bug.cgi?id=123451
+
Reviewed by Andreas Kling.
This involves:
Modified: trunk/Source/WebCore/Modules/indexeddb/IDBDatabaseBackendImpl.cpp (158217 => 158218)
--- trunk/Source/WebCore/Modules/indexeddb/IDBDatabaseBackendImpl.cpp 2013-10-29 20:38:40 UTC (rev 158217)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBDatabaseBackendImpl.cpp 2013-10-29 20:41:40 UTC (rev 158218)
@@ -422,7 +422,6 @@
Deque<OwnPtr<IDBPendingOpenCall>> pendingOpenCalls;
m_pendingOpenCalls.swap(pendingOpenCalls);
- auto pendingOpenCalls = std::move(m_pendingOpenCalls);
while (!pendingOpenCalls.isEmpty()) {
OwnPtr<IDBPendingOpenCall> pendingOpenCall = pendingOpenCalls.takeFirst();
openConnection(pendingOpenCall->callbacks(), pendingOpenCall->databaseCallbacks(), pendingOpenCall->transactionId(), pendingOpenCall->version());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes