<!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>[162864] 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/162864">162864</a></dd>
<dt>Author</dt> <dd>beidson@apple.com</dd>
<dt>Date</dt> <dd>2014-01-27 13:29:16 -0800 (Mon, 27 Jan 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>IDB: Remove unused concept of &quot;cursor prefetch&quot;
https://bugs.webkit.org/show_bug.cgi?id=127700

Reviewed by Tim Horton.

Source/WebCore:

* Modules/indexeddb/IDBCursorBackend.cpp:
* Modules/indexeddb/IDBCursorBackend.h:
* Modules/indexeddb/IDBCursorBackendOperations.cpp:
* Modules/indexeddb/IDBCursorBackendOperations.h:
* Modules/indexeddb/IDBServerConnection.h:
* Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp:
* Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h:

Source/WebKit2:

* WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp:
* WebProcess/Databases/IndexedDB/WebIDBServerConnection.h:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreModulesindexeddbIDBCursorBackendcpp">trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackend.cpp</a></li>
<li><a href="#trunkSourceWebCoreModulesindexeddbIDBCursorBackendh">trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackend.h</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 (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebCore/ChangeLog        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -1,5 +1,20 @@
</span><span class="cx"> 2014-01-27  Brady Eidson  &lt;beidson@apple.com&gt;
</span><span class="cx"> 
</span><ins>+        IDB: Remove unused concept of &quot;cursor prefetch&quot;
+        https://bugs.webkit.org/show_bug.cgi?id=127700
+
+        Reviewed by Tim Horton.
+
+        * Modules/indexeddb/IDBCursorBackend.cpp:
+        * Modules/indexeddb/IDBCursorBackend.h:
+        * Modules/indexeddb/IDBCursorBackendOperations.cpp:
+        * Modules/indexeddb/IDBCursorBackendOperations.h:
+        * Modules/indexeddb/IDBServerConnection.h:
+        * Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp:
+        * Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h:
+
+2014-01-27  Brady Eidson  &lt;beidson@apple.com&gt;
+
</ins><span class="cx">         IDB: Refactor out the last of the operation callbacks that are called by the LevelDB backing store
</span><span class="cx">         https://bugs.webkit.org/show_bug.cgi?id=127592
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbIDBCursorBackendcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackend.cpp (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackend.cpp        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackend.cpp        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -81,25 +81,6 @@
</span><span class="cx">     m_transaction-&gt;database().deleteRange(m_transaction-&gt;id(), m_objectStoreID, keyRange.release(), prpCallbacks);
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void IDBCursorBackend::prefetchContinue(int numberToFetch, PassRefPtr&lt;IDBCallbacks&gt; prpCallbacks, ExceptionCode&amp;)
-{
-    LOG(StorageAPI, &quot;IDBCursorBackend::prefetchContinue&quot;);
-    RefPtr&lt;IDBCallbacks&gt; callbacks = prpCallbacks;
-    m_transaction-&gt;scheduleTask(m_taskType, CursorPrefetchIterationOperation::create(this, numberToFetch, callbacks));
-}
-
-void IDBCursorBackend::prefetchReset(int usedPrefetches, int)
-{
-    LOG(StorageAPI, &quot;IDBCursorBackend::prefetchReset&quot;);
-    m_cursorID = m_savedCursorID;
-    m_savedCursorID = 0;
-
-    if (m_closed)
-        return;
-    if (m_cursorID)
-        m_transaction-&gt;database().serverConnection().cursorPrefetchReset(*this, usedPrefetches);
-}
-
</del><span class="cx"> void IDBCursorBackend::close()
</span><span class="cx"> {
</span><span class="cx">     LOG(StorageAPI, &quot;IDBCursorBackend::close&quot;);
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbIDBCursorBackendh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackend.h (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackend.h        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackend.h        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -55,8 +55,6 @@
</span><span class="cx">     void advance(unsigned long, PassRefPtr&lt;IDBCallbacks&gt;, ExceptionCode&amp;);
</span><span class="cx">     void continueFunction(PassRefPtr&lt;IDBKey&gt;, PassRefPtr&lt;IDBCallbacks&gt;, ExceptionCode&amp;);
</span><span class="cx">     void deleteFunction(PassRefPtr&lt;IDBCallbacks&gt;, ExceptionCode&amp;);
</span><del>-    void prefetchContinue(int numberToFetch, PassRefPtr&lt;IDBCallbacks&gt;, ExceptionCode&amp;);
-    void prefetchReset(int usedPrefetches, int unusedPrefetches);
</del><span class="cx">     void postSuccessHandlerCallback() { }
</span><span class="cx"> 
</span><span class="cx">     IDBKey* key() const { return m_currentKey.get(); }
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbIDBCursorBackendOperationscpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.cpp (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.cpp        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.cpp        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -47,12 +47,6 @@
</span><span class="cx">     m_cursor-&gt;transaction().database().serverConnection().cursorIterate(*m_cursor, *this, completionCallback);
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void CursorPrefetchIterationOperation::perform(std::function&lt;void()&gt; completionCallback)
-{
-    LOG(StorageAPI, &quot;CursorPrefetchIterationOperation&quot;);
-    m_cursor-&gt;transaction().database().serverConnection().cursorPrefetchIteration(*m_cursor, *this, completionCallback);
-}
-
</del><span class="cx"> } // namespace WebCore
</span><span class="cx"> 
</span><span class="cx"> #endif // ENABLED(INDEXED_DATABASE)
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbIDBCursorBackendOperationsh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.h (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.h        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBCursorBackendOperations.h        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -82,30 +82,6 @@
</span><span class="cx">     RefPtr&lt;IDBCallbacks&gt; m_callbacks;
</span><span class="cx"> };
</span><span class="cx"> 
</span><del>-class CursorPrefetchIterationOperation : public IDBOperation {
-public:
-    static PassRefPtr&lt;IDBOperation&gt; create(PassRefPtr&lt;IDBCursorBackend&gt; cursor, int numberToFetch, PassRefPtr&lt;IDBCallbacks&gt; callbacks)
-    {
-        return adoptRef(new CursorPrefetchIterationOperation(cursor, numberToFetch, callbacks));
-    }
-    virtual void perform(std::function&lt;void()&gt; completionCallback) override final;
-
-    int numberToFetch() const { return m_numberToFetch; }
-    IDBCallbacks* callbacks() const { return m_callbacks.get(); }
-
-private:
-    CursorPrefetchIterationOperation(PassRefPtr&lt;IDBCursorBackend&gt; cursor, int numberToFetch, PassRefPtr&lt;IDBCallbacks&gt; callbacks)
-        : m_cursor(cursor)
-        , m_numberToFetch(numberToFetch)
-        , m_callbacks(callbacks)
-    {
-    }
-
-    RefPtr&lt;IDBCursorBackend&gt; m_cursor;
-    int m_numberToFetch;
-    RefPtr&lt;IDBCallbacks&gt; m_callbacks;
-};
-
</del><span class="cx"> } // namespace WebCore
</span><span class="cx"> 
</span><span class="cx"> #endif // ENABLE(INDEXED_DATABASE)
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbIDBServerConnectionh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/IDBServerConnection.h (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/IDBServerConnection.h        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBServerConnection.h        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -91,8 +91,6 @@
</span><span class="cx">     // Cursor-level operations
</span><span class="cx">     virtual void cursorAdvance(IDBCursorBackend&amp;, const CursorAdvanceOperation&amp;, std::function&lt;void()&gt; completionCallback) = 0;
</span><span class="cx">     virtual void cursorIterate(IDBCursorBackend&amp;, const CursorIterationOperation&amp;, std::function&lt;void()&gt; completionCallback) = 0;
</span><del>-    virtual void cursorPrefetchIteration(IDBCursorBackend&amp;, const CursorPrefetchIterationOperation&amp;, std::function&lt;void()&gt; completionCallback) = 0;
-    virtual void cursorPrefetchReset(IDBCursorBackend&amp;, int usedPrefetches) = 0;
</del><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 (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.cpp        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -612,77 +612,6 @@
</span><span class="cx">     
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void IDBServerConnectionLevelDB::cursorPrefetchIteration(IDBCursorBackend&amp; cursor, const CursorPrefetchIterationOperation&amp; operation, std::function&lt;void()&gt; completionCallback)
-{
-    IDBBackingStoreCursorLevelDB* backingStoreCursor = cursor.id() ? m_backingStoreCursors.get(cursor.id()) : 0;
-#ifndef NDEBUG
-    if (cursor.id())
-        ASSERT(backingStoreCursor);
-#endif
-
-    Vector&lt;RefPtr&lt;IDBKey&gt;&gt; foundKeys;
-    Vector&lt;RefPtr&lt;IDBKey&gt;&gt; foundPrimaryKeys;
-    Vector&lt;RefPtr&lt;SharedBuffer&gt;&gt; foundValues;
-
-    if (backingStoreCursor) {
-        int64_t cursorID = m_nextCursorID++;
-        RefPtr&lt;IDBBackingStoreCursorLevelDB&gt; savedCursor = backingStoreCursor-&gt;clone();
-        m_backingStoreCursors.set(cursorID, savedCursor.release());
-        cursor.setSavedCursorID(cursorID);
-    }
-
-    const size_t maxSizeEstimate = 10 * 1024 * 1024;
-    size_t sizeEstimate = 0;
-
-    for (int i = 0; i &lt; operation.numberToFetch(); ++i) {
-        if (!backingStoreCursor || !backingStoreCursor-&gt;continueFunction(0)) {
-            m_backingStoreCursors.remove(cursor.id());
-            cursor.clear();
-            break;
-        }
-
-        foundKeys.append(backingStoreCursor-&gt;key());
-        foundPrimaryKeys.append(backingStoreCursor-&gt;primaryKey());
-
-        switch (cursor.cursorType()) {
-        case IndexedDB::CursorType::KeyOnly:
-            foundValues.append(SharedBuffer::create());
-            break;
-        case IndexedDB::CursorType::KeyAndValue:
-            sizeEstimate += backingStoreCursor-&gt;value()-&gt;size();
-            foundValues.append(backingStoreCursor-&gt;value());
-            break;
-        default:
-            ASSERT_NOT_REACHED();
-        }
-        sizeEstimate += backingStoreCursor-&gt;key()-&gt;sizeEstimate();
-        sizeEstimate += backingStoreCursor-&gt;primaryKey()-&gt;sizeEstimate();
-
-        if (sizeEstimate &gt; maxSizeEstimate)
-            break;
-    }
-
-    if (!foundKeys.size()) {
-        operation.callbacks()-&gt;onSuccess(static_cast&lt;SharedBuffer*&gt;(0));
-        return;
-    }
-
-    operation.callbacks()-&gt;onSuccessWithPrefetch(foundKeys, foundPrimaryKeys, foundValues);
-    
-    EMPTY_ASYNC_COMPLETION_CALLBACK(completionCallback);
-}
-
-void IDBServerConnectionLevelDB::cursorPrefetchReset(IDBCursorBackend&amp; cursor, int usedPrefetches)
-{
-    IDBBackingStoreCursorLevelDB* backingStoreCursor = cursor.id() ? m_backingStoreCursors.get(cursor.id()) : 0;
-    ASSERT(backingStoreCursor);
-
-    for (int i = 0; i &lt; usedPrefetches; ++i) {
-        bool ok = backingStoreCursor-&gt;continueFunction();
-        ASSERT_UNUSED(ok, ok);
-    }
-}
-
</del><span class="cx"> } // namespace WebCore
</span><span class="cx"> 
</span><span class="cx"> #endif // USE(LEVELDB)
</span></span></pre></div>
<a id="trunkSourceWebCoreModulesindexeddbleveldbIDBServerConnectionLevelDBh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebCore/Modules/indexeddb/leveldb/IDBServerConnectionLevelDB.h        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -78,8 +78,6 @@
</span><span class="cx">     // Cursor-level operations
</span><span class="cx">     virtual void cursorAdvance(IDBCursorBackend&amp;, const CursorAdvanceOperation&amp;, std::function&lt;void()&gt; completionCallback) override;
</span><span class="cx">     virtual void cursorIterate(IDBCursorBackend&amp;, const CursorIterationOperation&amp;, std::function&lt;void()&gt; completionCallback) override;
</span><del>-    virtual void cursorPrefetchIteration(IDBCursorBackend&amp;, const CursorPrefetchIterationOperation&amp;, std::function&lt;void()&gt; completionCallback) override;
-    virtual void cursorPrefetchReset(IDBCursorBackend&amp;, int usedPrefetches) override;
</del><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 (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebKit2/ChangeLog        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -1,3 +1,13 @@
</span><ins>+2014-01-27  Brady Eidson  &lt;beidson@apple.com&gt;
+
+        IDB: Remove unused concept of &quot;cursor prefetch&quot;
+        https://bugs.webkit.org/show_bug.cgi?id=127700
+
+        Reviewed by Tim Horton.
+
+        * WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp:
+        * WebProcess/Databases/IndexedDB/WebIDBServerConnection.h:
+
</ins><span class="cx"> 2014-01-27  Tim Horton  &lt;timothy_horton@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Fix the build on case-sensitive filesystems
</span></span></pre></div>
<a id="trunkSourceWebKit2WebProcessDatabasesIndexedDBWebIDBServerConnectioncpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -527,14 +527,6 @@
</span><span class="cx"> {
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void WebIDBServerConnection::cursorPrefetchIteration(IDBCursorBackend&amp;, const CursorPrefetchIterationOperation&amp;, std::function&lt;void()&gt; completionCallback)
-{
-}
-
-void WebIDBServerConnection::cursorPrefetchReset(IDBCursorBackend&amp;, int usedPrefetches)
-{
-}
-
</del><span class="cx"> IPC::Connection* WebIDBServerConnection::messageSenderConnection()
</span><span class="cx"> {
</span><span class="cx">     return WebProcess::shared().webToDatabaseProcessConnection()-&gt;connection();
</span></span></pre></div>
<a id="trunkSourceWebKit2WebProcessDatabasesIndexedDBWebIDBServerConnectionh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.h (162863 => 162864)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.h        2014-01-27 21:24:41 UTC (rev 162863)
+++ trunk/Source/WebKit2/WebProcess/Databases/IndexedDB/WebIDBServerConnection.h        2014-01-27 21:29:16 UTC (rev 162864)
</span><span class="lines">@@ -82,8 +82,6 @@
</span><span class="cx">     // Cursor-level operations
</span><span class="cx">     virtual void cursorAdvance(WebCore::IDBCursorBackend&amp;, const WebCore::CursorAdvanceOperation&amp;, std::function&lt;void()&gt; completionCallback) override;
</span><span class="cx">     virtual void cursorIterate(WebCore::IDBCursorBackend&amp;, const WebCore::CursorIterationOperation&amp;, std::function&lt;void()&gt; completionCallback) override;
</span><del>-    virtual void cursorPrefetchIteration(WebCore::IDBCursorBackend&amp;, const WebCore::CursorPrefetchIterationOperation&amp;, std::function&lt;void()&gt; completionCallback) override;
-    virtual void cursorPrefetchReset(WebCore::IDBCursorBackend&amp;, int usedPrefetches) override;
</del><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>