<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[162869] trunk/Source</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/162869">162869</a></dd>
<dt>Author</dt> <dd>beidson@apple.com</dd>
<dt>Date</dt> <dd>2014-01-27 14:38:41 -0800 (Mon, 27 Jan 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>IDB: LevelDB backing store shouldn't know about IDBCursor or IDBCallbacks
https://bugs.webkit.org/show_bug.cgi?id=127708

Reviewed by Tim Horton.

Source/WebCore:

Move that knowledge to the IDBCursorBackendOperations inside the callback.

* Modules/indexeddb/IDBCursorBackendOperations.cpp:
(WebCore::CursorAdvanceOperation::perform):
(WebCore::CursorIterationOperation::perform):
* Modules/indexeddb/IDBCursorBackendOperations.h:

* Modules/indexeddb/IDBServerConnection.h:
* Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp:
(WebCore::IDBServerConnectionLevelDB::cursorAdvance):
(WebCore::IDBServerConnectionLevelDB::cursorIterate):
* Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h:

Source/WebKit2:

Update to new callback signatures:
* WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp:
(WebKit::WebIDBServerConnection::cursorAdvance):
(WebKit::WebIDBServerConnection::cursorIterate):
* WebProcess/Databases/IndexedDB/WebIDBServerConnection.h:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreModulesindexeddbIDBCursorBackendOperationscpp">trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.cpp</a></li>
<li><a href="#trunkSourceWebCoreModulesindexeddbIDBCursorBackendOperationsh">trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.h</a></li>
<li><a href="#trunkSourceWebCoreModulesindexeddbIDBServerConnectionh">trunk/Source/WebCore/Modules/indexeddb/IDBServerConnection.h</a></li>
<li><a href="#trunkSourceWebCoreModulesindexeddbleveldbIDBServerConnectionLevelDBcpp">trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp</a></li>
<li><a href="#trunkSourceWebCoreModulesindexeddbleveldbIDBServerConnectionLevelDBh">trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h</a></li>
<li><a href="#trunkSourceWebKit2ChangeLog">trunk/Source/WebKit2/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2WebProcessDatabasesIndexedDBWebIDBServerConnectioncpp">trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp</a></li>
<li><a href="#trunkSourceWebKit2WebProcessDatabasesIndexedDBWebIDBServerConnectionh">trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (162868 => 162869)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2014-01-27 22:37:12 UTC (rev 162868)
+++ trunk/Source/WebCore/ChangeLog        2014-01-27 22:38:41 UTC (rev 162869)
</span><span class="lines">@@ -1,5 +1,25 @@
</span><span class="cx"> 2014-01-27  Brady Eidson  &lt;beidson@apple.com&gt;
</span><span class="cx"> 
</span><ins>+        IDB: LevelDB backing store shouldn't know about IDBCursor or IDBCallbacks
+        https://bugs.webkit.org/show_bug.cgi?id=127708
+
+        Reviewed by Tim Horton.
+
+        Move that knowledge to the IDBCursorBackendOperations inside the callback.
+
+        * Modules/indexeddb/IDBCursorBackendOperations.cpp:
+        (WebCore::CursorAdvanceOperation::perform):
+        (WebCore::CursorIterationOperation::perform):
+        * Modules/indexeddb/IDBCursorBackendOperations.h:
+
+        * Modules/indexeddb/IDBServerConnection.h:
+        * Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp:
+        (WebCore::IDBServerConnectionLevelDB::cursorAdvance):
+        (WebCore::IDBServerConnectionLevelDB::cursorIterate):
+        * Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h:
+
+2014-01-27  Brady Eidson  &lt;beidson@apple.com&gt;
+
</ins><span class="cx">         IDB: Remove unused concept of &quot;cursor prefetch&quot;
</span><span class="cx">         https://bugs.webkit.org/show_bug.cgi?id=127700
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbIDBCursorBackendOperationscpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.cpp (162868 => 162869)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.cpp        2014-01-27 22:37:12 UTC (rev 162868)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.cpp        2014-01-27 22:38:41 UTC (rev 162869)
</span><span class="lines">@@ -38,13 +38,47 @@
</span><span class="cx"> void CursorAdvanceOperation::perform(std::function&lt;void()&gt; completionCallback)
</span><span class="cx"> {
</span><span class="cx">     LOG(StorageAPI, &quot;CursorAdvanceOperation&quot;);
</span><del>-    m_cursor-&gt;transaction().database().serverConnection().cursorAdvance(*m_cursor, *this, completionCallback);
</del><ins>+
+    RefPtr&lt;CursorAdvanceOperation&gt; operation(this);
+    auto callback = [this, operation, completionCallback](PassRefPtr&lt;IDBKey&gt; key, PassRefPtr&lt;IDBKey&gt; primaryKey, PassRefPtr&lt;SharedBuffer&gt; value, PassRefPtr&lt;IDBDatabaseError&gt; error) {
+        if (error) {
+            m_cursor-&gt;clear();
+            // FIXME: The LevelDB backend calls onSuccess even on failure.
+            // This will probably have to change soon (for sanity) and will probably break LevelDB
+            m_callbacks-&gt;onSuccess(static_cast&lt;SharedBuffer*&gt;(0));
+        } else {
+            m_cursor-&gt;updateCursorData(key.get(), primaryKey.get(), value.get());
+            m_callbacks-&gt;onSuccess(key, primaryKey, value);
+        }
+
+        // FIXME: Cursor operations should be able to pass along an error instead of success
+        completionCallback();
+    };
+
+    m_cursor-&gt;transaction().database().serverConnection().cursorAdvance(*m_cursor, *this, callback);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void CursorIterationOperation::perform(std::function&lt;void()&gt; completionCallback)
</span><span class="cx"> {
</span><span class="cx">     LOG(StorageAPI, &quot;CursorIterationOperation&quot;);
</span><del>-    m_cursor-&gt;transaction().database().serverConnection().cursorIterate(*m_cursor, *this, completionCallback);
</del><ins>+
+    RefPtr&lt;CursorIterationOperation&gt; operation(this);
+    auto callback = [this, operation, completionCallback](PassRefPtr&lt;IDBKey&gt; key, PassRefPtr&lt;IDBKey&gt; primaryKey, PassRefPtr&lt;SharedBuffer&gt; value, PassRefPtr&lt;IDBDatabaseError&gt; error) {
+        if (error) {
+            m_cursor-&gt;clear();
+            // FIXME: The LevelDB backend calls onSuccess even on failure.
+            // This will probably have to change soon (for sanity) and will probably break LevelDB
+            m_callbacks-&gt;onSuccess(static_cast&lt;SharedBuffer*&gt;(0));
+        } else {
+            m_cursor-&gt;updateCursorData(key.get(), primaryKey.get(), value.get());
+            m_callbacks-&gt;onSuccess(key, primaryKey, value);
+        }
+
+        // FIXME: Cursor operations should be able to pass along an error instead of success
+        completionCallback();
+    };
+
+    m_cursor-&gt;transaction().database().serverConnection().cursorIterate(*m_cursor, *this, callback);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> } // namespace WebCore
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbIDBCursorBackendOperationsh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.h (162868 => 162869)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.h        2014-01-27 22:37:12 UTC (rev 162868)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.h        2014-01-27 22:38:41 UTC (rev 162869)
</span><span class="lines">@@ -43,7 +43,6 @@
</span><span class="cx">     virtual void perform(std::function&lt;void()&gt; completionCallback) override final;
</span><span class="cx"> 
</span><span class="cx">     IDBKey* key() const { return m_key.get(); }
</span><del>-    IDBCallbacks* callbacks() const { return m_callbacks.get(); }
</del><span class="cx"> 
</span><span class="cx"> private:
</span><span class="cx">     CursorIterationOperation(PassRefPtr&lt;IDBCursorBackend&gt; cursor, PassRefPtr&lt;IDBKey&gt; key, PassRefPtr&lt;IDBCallbacks&gt; callbacks)
</span><span class="lines">@@ -67,7 +66,6 @@
</span><span class="cx">     virtual void perform(std::function&lt;void()&gt; completionCallback) override final;
</span><span class="cx"> 
</span><span class="cx">     unsigned long count() const { return m_count; }
</span><del>-    IDBCallbacks* callbacks() const { return m_callbacks.get(); }
</del><span class="cx"> 
</span><span class="cx"> private:
</span><span class="cx">     CursorAdvanceOperation(PassRefPtr&lt;IDBCursorBackend&gt; cursor, unsigned long count, PassRefPtr&lt;IDBCallbacks&gt; callbacks)
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbIDBServerConnectionh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/IDBServerConnection.h (162868 => 162869)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/IDBServerConnection.h        2014-01-27 22:37:12 UTC (rev 162868)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBServerConnection.h        2014-01-27 22:38:41 UTC (rev 162869)
</span><span class="lines">@@ -89,8 +89,8 @@
</span><span class="cx">     virtual void changeDatabaseVersion(IDBTransactionBackend&amp;, const IDBDatabaseBackend::VersionChangeOperation&amp;, std::function&lt;void(PassRefPtr&lt;IDBDatabaseError&gt;)&gt; completionCallback) = 0;
</span><span class="cx"> 
</span><span class="cx">     // Cursor-level operations
</span><del>-    virtual void cursorAdvance(IDBCursorBackend&amp;, const CursorAdvanceOperation&amp;, std::function&lt;void()&gt; completionCallback) = 0;
-    virtual void cursorIterate(IDBCursorBackend&amp;, const CursorIterationOperation&amp;, std::function&lt;void()&gt; completionCallback) = 0;
</del><ins>+    virtual void cursorAdvance(IDBCursorBackend&amp;, const CursorAdvanceOperation&amp;, std::function&lt;void(PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;SharedBuffer&gt;, PassRefPtr&lt;IDBDatabaseError&gt;)&gt; completionCallback) = 0;
+    virtual void cursorIterate(IDBCursorBackend&amp;, const CursorIterationOperation&amp;, std::function&lt;void(PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;SharedBuffer&gt;, PassRefPtr&lt;IDBDatabaseError&gt;)&gt; completionCallback) = 0;
</ins><span class="cx"> };
</span><span class="cx"> 
</span><span class="cx"> } // namespace WebCore
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbleveldbIDBServerConnectionLevelDBcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp (162868 => 162869)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp        2014-01-27 22:37:12 UTC (rev 162868)
+++ trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp        2014-01-27 22:38:41 UTC (rev 162869)
</span><span class="lines">@@ -568,7 +568,7 @@
</span><span class="cx">     ASYNC_COMPLETION_CALLBACK_WITH_NULL_ARG(completionCallback);
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void IDBServerConnectionLevelDB::cursorAdvance(IDBCursorBackend&amp; cursor, const CursorAdvanceOperation&amp; operation, std::function&lt;void()&gt; completionCallback)
</del><ins>+void IDBServerConnectionLevelDB::cursorAdvance(IDBCursorBackend&amp; cursor, const CursorAdvanceOperation&amp; operation, std::function&lt;void(PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;SharedBuffer&gt;, PassRefPtr&lt;IDBDatabaseError&gt;)&gt; completionCallback)
</ins><span class="cx"> {
</span><span class="cx">     IDBBackingStoreCursorLevelDB* backingStoreCursor = cursor.id() ? m_backingStoreCursors.get(cursor.id()) : 0;
</span><span class="cx"> #ifndef NDEBUG
</span><span class="lines">@@ -578,19 +578,23 @@
</span><span class="cx"> 
</span><span class="cx">     if (!backingStoreCursor || !backingStoreCursor-&gt;advance(operation.count())) {
</span><span class="cx">         m_backingStoreCursors.remove(cursor.id());
</span><del>-        cursor.clear();
</del><span class="cx"> 
</span><del>-        operation.callbacks()-&gt;onSuccess(static_cast&lt;SharedBuffer*&gt;(0));
-        EMPTY_ASYNC_COMPLETION_CALLBACK(completionCallback);
</del><ins>+        callOnMainThread([completionCallback]() {
+            completionCallback(nullptr, nullptr, nullptr, IDBDatabaseError::create(IDBDatabaseException::UnknownError, &quot;Unknown error advancing cursor&quot;));
+        });
+
</ins><span class="cx">         return;
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    cursor.updateCursorData(backingStoreCursor-&gt;key().get(), backingStoreCursor-&gt;primaryKey().get(), backingStoreCursor-&gt;value().get());
-    operation.callbacks()-&gt;onSuccess(backingStoreCursor-&gt;key(), backingStoreCursor-&gt;primaryKey(), backingStoreCursor-&gt;value());
-    EMPTY_ASYNC_COMPLETION_CALLBACK(completionCallback);
</del><ins>+    RefPtr&lt;IDBKey&gt; key = backingStoreCursor-&gt;key(), primaryKey = backingStoreCursor-&gt;primaryKey();
+    RefPtr&lt;SharedBuffer&gt; value = backingStoreCursor-&gt;value();
+
+    callOnMainThread([completionCallback, key, primaryKey, value]() {
+        completionCallback(key, primaryKey, value, IDBDatabaseError::create(IDBDatabaseException::UnknownError, &quot;Unknown error advancing cursor&quot;));
+    });
</ins><span class="cx"> }
</span><span class="cx"> 
</span><del>-void IDBServerConnectionLevelDB::cursorIterate(IDBCursorBackend&amp; cursor, const CursorIterationOperation&amp; operation, std::function&lt;void()&gt; completionCallback)
</del><ins>+void IDBServerConnectionLevelDB::cursorIterate(IDBCursorBackend&amp; cursor, const CursorIterationOperation&amp; operation, std::function&lt;void(PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;SharedBuffer&gt;, PassRefPtr&lt;IDBDatabaseError&gt;)&gt; completionCallback)
</ins><span class="cx"> {
</span><span class="cx">     IDBBackingStoreCursorLevelDB* backingStoreCursor = cursor.id() ? m_backingStoreCursors.get(cursor.id()) : 0;
</span><span class="cx"> #ifndef NDEBUG
</span><span class="lines">@@ -598,18 +602,22 @@
</span><span class="cx">         ASSERT(backingStoreCursor);
</span><span class="cx"> #endif
</span><span class="cx"> 
</span><del>-    EMPTY_ASYNC_COMPLETION_CALLBACK(completionCallback);
-
</del><span class="cx">     if (!backingStoreCursor || !backingStoreCursor-&gt;continueFunction(operation.key())) {
</span><span class="cx">         m_backingStoreCursors.remove(cursor.id());
</span><del>-        cursor.clear();
-        operation.callbacks()-&gt;onSuccess(static_cast&lt;SharedBuffer*&gt;(0));
</del><ins>+
+        callOnMainThread([completionCallback]() {
+            completionCallback(nullptr, nullptr, nullptr, IDBDatabaseError::create(IDBDatabaseException::UnknownError, &quot;Unknown error advancing cursor&quot;));
+        });
+
</ins><span class="cx">         return;
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    cursor.updateCursorData(backingStoreCursor-&gt;key().get(), backingStoreCursor-&gt;primaryKey().get(), backingStoreCursor-&gt;value().get());
-    operation.callbacks()-&gt;onSuccess(backingStoreCursor-&gt;key(), backingStoreCursor-&gt;primaryKey(), backingStoreCursor-&gt;value());
-    
</del><ins>+    RefPtr&lt;IDBKey&gt; key = backingStoreCursor-&gt;key(), primaryKey = backingStoreCursor-&gt;primaryKey();
+    RefPtr&lt;SharedBuffer&gt; value = backingStoreCursor-&gt;value();
+
+    callOnMainThread([completionCallback, key, primaryKey, value]() {
+        completionCallback(key, primaryKey, value, IDBDatabaseError::create(IDBDatabaseException::UnknownError, &quot;Unknown error advancing cursor&quot;));
+    });
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> } // namespace WebCore
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbleveldbIDBServerConnectionLevelDBh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h (162868 => 162869)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h        2014-01-27 22:37:12 UTC (rev 162868)
+++ trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h        2014-01-27 22:38:41 UTC (rev 162869)
</span><span class="lines">@@ -76,8 +76,8 @@
</span><span class="cx">     virtual void changeDatabaseVersion(IDBTransactionBackend&amp;, const IDBDatabaseBackend::VersionChangeOperation&amp;, std::function&lt;void(PassRefPtr&lt;IDBDatabaseError&gt;)&gt; completionCallback) override;
</span><span class="cx"> 
</span><span class="cx">     // Cursor-level operations
</span><del>-    virtual void cursorAdvance(IDBCursorBackend&amp;, const CursorAdvanceOperation&amp;, std::function&lt;void()&gt; completionCallback) override;
-    virtual void cursorIterate(IDBCursorBackend&amp;, const CursorIterationOperation&amp;, std::function&lt;void()&gt; completionCallback) override;
</del><ins>+    virtual void cursorAdvance(IDBCursorBackend&amp;, const CursorAdvanceOperation&amp;, std::function&lt;void(PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;SharedBuffer&gt;, PassRefPtr&lt;IDBDatabaseError&gt;)&gt; completionCallback) override;
+    virtual void cursorIterate(IDBCursorBackend&amp;, const CursorIterationOperation&amp;, std::function&lt;void(PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;SharedBuffer&gt;, PassRefPtr&lt;IDBDatabaseError&gt;)&gt; completionCallback) override;
</ins><span class="cx"> 
</span><span class="cx"> private:
</span><span class="cx">     IDBServerConnectionLevelDB(const String&amp; databaseName, IDBBackingStoreLevelDB*);
</span></span></pre></div>
<a id="trunkSourceWebKit2ChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/ChangeLog (162868 => 162869)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2014-01-27 22:37:12 UTC (rev 162868)
+++ trunk/Source/WebKit2/ChangeLog        2014-01-27 22:38:41 UTC (rev 162869)
</span><span class="lines">@@ -1,3 +1,16 @@
</span><ins>+2014-01-27  Brady Eidson  &lt;beidson@apple.com&gt;
+
+        IDB: LevelDB backing store shouldn't know about IDBCursor or IDBCallbacks
+        https://bugs.webkit.org/show_bug.cgi?id=127708
+
+        Reviewed by Tim Horton.
+
+        Update to new callback signatures:
+        * WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp:
+        (WebKit::WebIDBServerConnection::cursorAdvance):
+        (WebKit::WebIDBServerConnection::cursorIterate):
+        * WebProcess/Databases/IndexedDB/WebIDBServerConnection.h:
+
</ins><span class="cx"> 2014-01-27  Anders Carlsson  &lt;andersca@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Tweak the WKWebView and WKWebViewConfiguration headers
</span></span></pre></div>
<a id="trunkSourceWebKit2WebProcessDatabasesIndexedDBWebIDBServerConnectioncpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp (162868 => 162869)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp        2014-01-27 22:37:12 UTC (rev 162868)
+++ trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp        2014-01-27 22:38:41 UTC (rev 162869)
</span><span class="lines">@@ -519,11 +519,11 @@
</span><span class="cx">     serverRequest-&gt;completeRequest(success ? nullptr : IDBDatabaseError::create(IDBDatabaseException::UnknownError, &quot;Unknown error occured changing database version&quot;));
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void WebIDBServerConnection::cursorAdvance(IDBCursorBackend&amp;, const CursorAdvanceOperation&amp;, std::function&lt;void()&gt; completionCallback)
</del><ins>+void WebIDBServerConnection::cursorAdvance(IDBCursorBackend&amp;, const CursorAdvanceOperation&amp;, std::function&lt;void(PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;SharedBuffer&gt;, PassRefPtr&lt;IDBDatabaseError&gt;)&gt; completionCallback)
</ins><span class="cx"> {
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void WebIDBServerConnection::cursorIterate(IDBCursorBackend&amp;, const CursorIterationOperation&amp;, std::function&lt;void()&gt; completionCallback)
</del><ins>+void WebIDBServerConnection::cursorIterate(IDBCursorBackend&amp;, const CursorIterationOperation&amp;, std::function&lt;void(PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;SharedBuffer&gt;, PassRefPtr&lt;IDBDatabaseError&gt;)&gt; completionCallback)
</ins><span class="cx"> {
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebKit2WebProcessDatabasesIndexedDBWebIDBServerConnectionh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.h (162868 => 162869)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.h        2014-01-27 22:37:12 UTC (rev 162868)
+++ trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.h        2014-01-27 22:38:41 UTC (rev 162869)
</span><span class="lines">@@ -80,8 +80,8 @@
</span><span class="cx">     virtual void changeDatabaseVersion(WebCore::IDBTransactionBackend&amp;, const WebCore::IDBDatabaseBackend::VersionChangeOperation&amp;, std::function&lt;void(PassRefPtr&lt;WebCore::IDBDatabaseError&gt;)&gt; completionCallback) override;
</span><span class="cx"> 
</span><span class="cx">     // Cursor-level operations
</span><del>-    virtual void cursorAdvance(WebCore::IDBCursorBackend&amp;, const WebCore::CursorAdvanceOperation&amp;, std::function&lt;void()&gt; completionCallback) override;
-    virtual void cursorIterate(WebCore::IDBCursorBackend&amp;, const WebCore::CursorIterationOperation&amp;, std::function&lt;void()&gt; completionCallback) override;
</del><ins>+    virtual void cursorAdvance(WebCore::IDBCursorBackend&amp;, const WebCore::CursorAdvanceOperation&amp;, std::function&lt;void(PassRefPtr&lt;WebCore::IDBKey&gt;, PassRefPtr&lt;WebCore::IDBKey&gt;, PassRefPtr&lt;WebCore::SharedBuffer&gt;, PassRefPtr&lt;WebCore::IDBDatabaseError&gt;)&gt; completionCallback) override;
+    virtual void cursorIterate(WebCore::IDBCursorBackend&amp;, const WebCore::CursorIterationOperation&amp;, std::function&lt;void(PassRefPtr&lt;WebCore::IDBKey&gt;, PassRefPtr&lt;WebCore::IDBKey&gt;, PassRefPtr&lt;WebCore::SharedBuffer&gt;, PassRefPtr&lt;WebCore::IDBDatabaseError&gt;)&gt; completionCallback) override;
</ins><span class="cx"> 
</span><span class="cx">     // Message handlers.
</span><span class="cx">     void didReceiveWebIDBServerConnectionMessage(IPC::Connection*, IPC::MessageDecoder&amp;);
</span></span></pre>
</div>
</div>

</body>
</html>