<!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>[178062] trunk/Source/WebCore</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/178062">178062</a></dd>
<dt>Author</dt> <dd>andersca@apple.com</dd>
<dt>Date</dt> <dd>2015-01-07 15:50:17 -0800 (Wed, 07 Jan 2015)</dd>
</dl>

<h3>Log Message</h3>
<pre>Remove AbstractSQLStatementBackend
https://bugs.webkit.org/show_bug.cgi?id=140222

Reviewed by Sam Weinig.

We're unlikely to fully take advantage of the SQL implementation being abstract anyway, so let's just simplify the code instead.

* Modules/webdatabase/AbstractSQLStatement.h:
* Modules/webdatabase/AbstractSQLStatementBackend.h: Removed.
* Modules/webdatabase/SQLStatement.cpp:
(WebCore::SQLStatement::setBackend):
* Modules/webdatabase/SQLStatement.h:
* Modules/webdatabase/SQLStatementBackend.cpp:
(WebCore::SQLStatementBackend::~SQLStatementBackend):
* Modules/webdatabase/SQLStatementBackend.h:
* WebCore.vcxproj/WebCore.vcxproj:
* WebCore.vcxproj/WebCore.vcxproj.filters:
* WebCore.xcodeproj/project.pbxproj:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreModuleswebdatabaseAbstractSQLStatementh">trunk/Source/WebCore/Modules/webdatabase/AbstractSQLStatement.h</a></li>
<li><a href="#trunkSourceWebCoreModuleswebdatabaseSQLStatementcpp">trunk/Source/WebCore/Modules/webdatabase/SQLStatement.cpp</a></li>
<li><a href="#trunkSourceWebCoreModuleswebdatabaseSQLStatementh">trunk/Source/WebCore/Modules/webdatabase/SQLStatement.h</a></li>
<li><a href="#trunkSourceWebCoreModuleswebdatabaseSQLStatementBackendcpp">trunk/Source/WebCore/Modules/webdatabase/SQLStatementBackend.cpp</a></li>
<li><a href="#trunkSourceWebCoreModuleswebdatabaseSQLStatementBackendh">trunk/Source/WebCore/Modules/webdatabase/SQLStatementBackend.h</a></li>
<li><a href="#trunkSourceWebCoreWebCorevcxprojWebCorevcxproj">trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj</a></li>
<li><a href="#trunkSourceWebCoreWebCorevcxprojWebCorevcxprojfilters">trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters</a></li>
<li><a href="#trunkSourceWebCoreWebCorexcodeprojprojectpbxproj">trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj</a></li>
</ul>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreModuleswebdatabaseAbstractSQLStatementBackendh">trunk/Source/WebCore/Modules/webdatabase/AbstractSQLStatementBackend.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (178061 => 178062)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2015-01-07 23:41:28 UTC (rev 178061)
+++ trunk/Source/WebCore/ChangeLog        2015-01-07 23:50:17 UTC (rev 178062)
</span><span class="lines">@@ -1,3 +1,24 @@
</span><ins>+2015-01-07  Anders Carlsson  &lt;andersca@apple.com&gt;
+
+        Remove AbstractSQLStatementBackend
+        https://bugs.webkit.org/show_bug.cgi?id=140222
+
+        Reviewed by Sam Weinig.
+
+        We're unlikely to fully take advantage of the SQL implementation being abstract anyway, so let's just simplify the code instead.
+
+        * Modules/webdatabase/AbstractSQLStatement.h:
+        * Modules/webdatabase/AbstractSQLStatementBackend.h: Removed.
+        * Modules/webdatabase/SQLStatement.cpp:
+        (WebCore::SQLStatement::setBackend):
+        * Modules/webdatabase/SQLStatement.h:
+        * Modules/webdatabase/SQLStatementBackend.cpp:
+        (WebCore::SQLStatementBackend::~SQLStatementBackend):
+        * Modules/webdatabase/SQLStatementBackend.h:
+        * WebCore.vcxproj/WebCore.vcxproj:
+        * WebCore.vcxproj/WebCore.vcxproj.filters:
+        * WebCore.xcodeproj/project.pbxproj:
+
</ins><span class="cx"> 2015-01-07  Brian J. Burg  &lt;burg@cs.washington.edu&gt;
</span><span class="cx"> 
</span><span class="cx">         Web Inspector: purge PassRefPtr from Inspector code and use Ref for typed and untyped protocol objects
</span></span></pre></div>
<a id="trunkSourceWebCoreModuleswebdatabaseAbstractSQLStatementh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/webdatabase/AbstractSQLStatement.h (178061 => 178062)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/webdatabase/AbstractSQLStatement.h        2015-01-07 23:41:28 UTC (rev 178061)
+++ trunk/Source/WebCore/Modules/webdatabase/AbstractSQLStatement.h        2015-01-07 23:50:17 UTC (rev 178062)
</span><span class="lines">@@ -32,13 +32,13 @@
</span><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="cx"> 
</span><del>-class AbstractSQLStatementBackend;
</del><ins>+class SQLStatementBackend;
</ins><span class="cx"> 
</span><span class="cx"> class AbstractSQLStatement {
</span><span class="cx"> public:
</span><span class="cx">     virtual ~AbstractSQLStatement() { }
</span><span class="cx"> 
</span><del>-    virtual void setBackend(AbstractSQLStatementBackend*) = 0;
</del><ins>+    virtual void setBackend(SQLStatementBackend*) = 0;
</ins><span class="cx"> 
</span><span class="cx">     virtual bool hasCallback() = 0;
</span><span class="cx">     virtual bool hasErrorCallback() = 0;
</span></span></pre></div>
<a id="trunkSourceWebCoreModuleswebdatabaseAbstractSQLStatementBackendh"></a>
<div class="delfile"><h4>Deleted: trunk/Source/WebCore/Modules/webdatabase/AbstractSQLStatementBackend.h (178061 => 178062)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/webdatabase/AbstractSQLStatementBackend.h        2015-01-07 23:41:28 UTC (rev 178061)
+++ trunk/Source/WebCore/Modules/webdatabase/AbstractSQLStatementBackend.h        2015-01-07 23:50:17 UTC (rev 178062)
</span><span class="lines">@@ -1,49 +0,0 @@
</span><del>-/*
- * Copyright (C) 2013 Apple Inc. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
- * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
- */
-
-#ifndef AbstractSQLStatementBackend_h
-#define AbstractSQLStatementBackend_h
-
-#if ENABLE(SQL_DATABASE)
-
-#include &quot;SQLError.h&quot;
-#include &quot;SQLResultSet.h&quot;
-#include &lt;wtf/ThreadSafeRefCounted.h&gt;
-
-namespace WebCore {
-
-class AbstractSQLStatementBackend : public ThreadSafeRefCounted&lt;AbstractSQLStatementBackend&gt; {
-public:
-    virtual ~AbstractSQLStatementBackend() { }
-
-    virtual PassRefPtr&lt;SQLError&gt; sqlError() const = 0;
-    virtual PassRefPtr&lt;SQLResultSet&gt; sqlResultSet() const = 0;
-};
-
-} // namespace WebCore
-
-#endif // ENABLE(SQL_DATABASE)
-
-#endif // AbstractSQLStatementBackend_h
</del></span></pre></div>
<a id="trunkSourceWebCoreModuleswebdatabaseSQLStatementcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/webdatabase/SQLStatement.cpp (178061 => 178062)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/webdatabase/SQLStatement.cpp        2015-01-07 23:41:28 UTC (rev 178061)
+++ trunk/Source/WebCore/Modules/webdatabase/SQLStatement.cpp        2015-01-07 23:50:17 UTC (rev 178062)
</span><span class="lines">@@ -31,10 +31,11 @@
</span><span class="cx"> #if ENABLE(SQL_DATABASE)
</span><span class="cx"> 
</span><span class="cx"> #include &quot;AbstractDatabaseServer.h&quot;
</span><del>-#include &quot;AbstractSQLStatementBackend.h&quot;
</del><span class="cx"> #include &quot;Database.h&quot;
</span><span class="cx"> #include &quot;DatabaseManager.h&quot;
</span><span class="cx"> #include &quot;Logging.h&quot;
</span><ins>+#include &quot;SQLError.h&quot;
+#include &quot;SQLStatementBackend.h&quot;
</ins><span class="cx"> #include &quot;SQLStatementCallback.h&quot;
</span><span class="cx"> #include &quot;SQLStatementErrorCallback.h&quot;
</span><span class="cx"> #include &quot;SQLTransaction.h&quot;
</span><span class="lines">@@ -51,7 +52,7 @@
</span><span class="cx"> {
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-void SQLStatement::setBackend(AbstractSQLStatementBackend* backend)
</del><ins>+void SQLStatement::setBackend(SQLStatementBackend* backend)
</ins><span class="cx"> {
</span><span class="cx">     m_backend = backend;
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkSourceWebCoreModuleswebdatabaseSQLStatementh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/webdatabase/SQLStatement.h (178061 => 178062)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/webdatabase/SQLStatement.h        2015-01-07 23:41:28 UTC (rev 178061)
+++ trunk/Source/WebCore/Modules/webdatabase/SQLStatement.h        2015-01-07 23:50:17 UTC (rev 178062)
</span><span class="lines">@@ -40,9 +40,9 @@
</span><span class="cx"> 
</span><span class="cx"> namespace WebCore {
</span><span class="cx"> 
</span><del>-class AbstractSQLStatementBackend;
</del><span class="cx"> class Database;
</span><span class="cx"> class SQLError;
</span><ins>+class SQLStatementBackend;
</ins><span class="cx"> class SQLStatementCallback;
</span><span class="cx"> class SQLStatementErrorCallback;
</span><span class="cx"> class SQLTransaction;
</span><span class="lines">@@ -53,16 +53,16 @@
</span><span class="cx"> 
</span><span class="cx">     bool performCallback(SQLTransaction*);
</span><span class="cx"> 
</span><del>-    virtual void setBackend(AbstractSQLStatementBackend*);
</del><ins>+    virtual void setBackend(SQLStatementBackend*);
</ins><span class="cx"> 
</span><span class="cx">     virtual bool hasCallback();
</span><span class="cx">     virtual bool hasErrorCallback();
</span><span class="cx"> 
</span><span class="cx"> private:
</span><del>-    // The AbstractSQLStatementBackend owns the SQLStatement. Hence, the backend is
</del><ins>+    // The SQLStatementBackend owns the SQLStatement. Hence, the backend is
</ins><span class="cx">     // guaranteed to be outlive the SQLStatement, and it is safe for us to refer
</span><span class="cx">     // to the backend using a raw pointer here.
</span><del>-    AbstractSQLStatementBackend* m_backend;
</del><ins>+    SQLStatementBackend* m_backend;
</ins><span class="cx"> 
</span><span class="cx">     SQLCallbackWrapper&lt;SQLStatementCallback&gt; m_statementCallbackWrapper;
</span><span class="cx">     SQLCallbackWrapper&lt;SQLStatementErrorCallback&gt; m_statementErrorCallbackWrapper;
</span></span></pre></div>
<a id="trunkSourceWebCoreModuleswebdatabaseSQLStatementBackendcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/webdatabase/SQLStatementBackend.cpp (178061 => 178062)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/webdatabase/SQLStatementBackend.cpp        2015-01-07 23:41:28 UTC (rev 178061)
+++ trunk/Source/WebCore/Modules/webdatabase/SQLStatementBackend.cpp        2015-01-07 23:50:17 UTC (rev 178062)
</span><span class="lines">@@ -34,6 +34,7 @@
</span><span class="cx"> #include &quot;DatabaseBackend.h&quot;
</span><span class="cx"> #include &quot;Logging.h&quot;
</span><span class="cx"> #include &quot;SQLError.h&quot;
</span><ins>+#include &quot;SQLResultSet.h&quot;
</ins><span class="cx"> #include &quot;SQLValue.h&quot;
</span><span class="cx"> #include &quot;SQLiteDatabase.h&quot;
</span><span class="cx"> #include &quot;SQLiteStatement.h&quot;
</span><span class="lines">@@ -92,6 +93,10 @@
</span><span class="cx">     m_frontend-&gt;setBackend(this);
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+SQLStatementBackend::~SQLStatementBackend()
+{
+}
+
</ins><span class="cx"> AbstractSQLStatement* SQLStatementBackend::frontend()
</span><span class="cx"> {
</span><span class="cx">     return m_frontend.get();
</span></span></pre></div>
<a id="trunkSourceWebCoreModuleswebdatabaseSQLStatementBackendh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Modules/webdatabase/SQLStatementBackend.h (178061 => 178062)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Modules/webdatabase/SQLStatementBackend.h        2015-01-07 23:41:28 UTC (rev 178061)
+++ trunk/Source/WebCore/Modules/webdatabase/SQLStatementBackend.h        2015-01-07 23:50:17 UTC (rev 178062)
</span><span class="lines">@@ -30,7 +30,6 @@
</span><span class="cx"> 
</span><span class="cx"> #if ENABLE(SQL_DATABASE)
</span><span class="cx"> 
</span><del>-#include &quot;AbstractSQLStatementBackend.h&quot;
</del><span class="cx"> #include &quot;SQLValue.h&quot;
</span><span class="cx"> #include &lt;wtf/Forward.h&gt;
</span><span class="cx"> #include &lt;wtf/Vector.h&gt;
</span><span class="lines">@@ -41,12 +40,14 @@
</span><span class="cx"> class AbstractSQLStatement;
</span><span class="cx"> class DatabaseBackend;
</span><span class="cx"> class SQLError;
</span><ins>+class SQLResultSet;
</ins><span class="cx"> class SQLTransactionBackend;
</span><span class="cx"> 
</span><del>-class SQLStatementBackend : public AbstractSQLStatementBackend {
</del><ins>+class SQLStatementBackend : public ThreadSafeRefCounted&lt;SQLStatementBackend&gt; {
</ins><span class="cx"> public:
</span><span class="cx">     static PassRefPtr&lt;SQLStatementBackend&gt; create(std::unique_ptr&lt;AbstractSQLStatement&gt;,
</span><span class="cx">         const String&amp; sqlStatement, const Vector&lt;SQLValue&gt;&amp; arguments, int permissions);
</span><ins>+    virtual ~SQLStatementBackend();
</ins><span class="cx"> 
</span><span class="cx">     bool execute(DatabaseBackend*);
</span><span class="cx">     bool lastExecutionFailedDueToQuota() const;
</span><span class="lines">@@ -58,8 +59,8 @@
</span><span class="cx">     void setVersionMismatchedError();
</span><span class="cx"> 
</span><span class="cx">     AbstractSQLStatement* frontend();
</span><del>-    virtual PassRefPtr&lt;SQLError&gt; sqlError() const;
-    virtual PassRefPtr&lt;SQLResultSet&gt; sqlResultSet() const;
</del><ins>+    PassRefPtr&lt;SQLError&gt; sqlError() const;
+    PassRefPtr&lt;SQLResultSet&gt; sqlResultSet() const;
</ins><span class="cx"> 
</span><span class="cx"> private:
</span><span class="cx">     SQLStatementBackend(std::unique_ptr&lt;AbstractSQLStatement&gt;, const String&amp; statement,
</span></span></pre></div>
<a id="trunkSourceWebCoreWebCorevcxprojWebCorevcxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj (178061 => 178062)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj        2015-01-07 23:41:28 UTC (rev 178061)
+++ trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj        2015-01-07 23:50:17 UTC (rev 178062)
</span><span class="lines">@@ -19077,7 +19077,6 @@
</span><span class="cx">     &lt;ClInclude Include=&quot;..\Modules\plugins\PluginReplacement.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;..\Modules\webdatabase\AbstractDatabaseServer.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;..\Modules\webdatabase\AbstractSQLStatement.h&quot; /&gt;
</span><del>-    &lt;ClInclude Include=&quot;..\Modules\webdatabase\AbstractSQLStatementBackend.h&quot; /&gt;
</del><span class="cx">     &lt;ClInclude Include=&quot;..\Modules\webdatabase\ChangeVersionData.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;..\Modules\webdatabase\ChangeVersionWrapper.h&quot; /&gt;
</span><span class="cx">     &lt;ClInclude Include=&quot;..\Modules\webdatabase\Database.h&quot; /&gt;
</span></span></pre></div>
<a id="trunkSourceWebCoreWebCorevcxprojWebCorevcxprojfilters"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters (178061 => 178062)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters        2015-01-07 23:41:28 UTC (rev 178061)
+++ trunk/Source/WebCore/WebCore.vcxproj/WebCore.vcxproj.filters        2015-01-07 23:50:17 UTC (rev 178062)
</span><span class="lines">@@ -7410,9 +7410,6 @@
</span><span class="cx">     &lt;ClInclude Include=&quot;..\Modules\webdatabase\AbstractSQLStatement.h&quot;&gt;
</span><span class="cx">       &lt;Filter&gt;Modules\webdatabase&lt;/Filter&gt;
</span><span class="cx">     &lt;/ClInclude&gt;
</span><del>-    &lt;ClInclude Include=&quot;..\Modules\webdatabase\AbstractSQLStatementBackend.h&quot;&gt;
-      &lt;Filter&gt;Modules\webdatabase&lt;/Filter&gt;
-    &lt;/ClInclude&gt;
</del><span class="cx">     &lt;ClInclude Include=&quot;..\Modules\webdatabase\ChangeVersionData.h&quot;&gt;
</span><span class="cx">       &lt;Filter&gt;Modules\webdatabase&lt;/Filter&gt;
</span><span class="cx">     &lt;/ClInclude&gt;
</span></span></pre></div>
<a id="trunkSourceWebCoreWebCorexcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj (178061 => 178062)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2015-01-07 23:41:28 UTC (rev 178061)
+++ trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj        2015-01-07 23:50:17 UTC (rev 178062)
</span><span class="lines">@@ -6667,7 +6667,6 @@
</span><span class="cx">                 FE456F181677D74E005EDDF9 /* DatabaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE456F161677D74E005EDDF9 /* DatabaseManager.cpp */; };
</span><span class="cx">                 FE456F191677D74E005EDDF9 /* DatabaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FE456F171677D74E005EDDF9 /* DatabaseManager.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 FE4AADEE16D2C37400026FFC /* AbstractSQLStatement.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4AADEC16D2C37400026FFC /* AbstractSQLStatement.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><del>-                FE4AADEF16D2C37400026FFC /* AbstractSQLStatementBackend.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4AADED16D2C37400026FFC /* AbstractSQLStatementBackend.h */; settings = {ATTRIBUTES = (Private, ); }; };
</del><span class="cx">                 FE6938B61045D67E008EABB6 /* EventHandlerIOS.mm in Sources */ = {isa = PBXBuildFile; fileRef = FE6938B51045D67E008EABB6 /* EventHandlerIOS.mm */; };
</span><span class="cx">                 FE699871192087E7006936BD /* FloatingPointEnvironment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE69986F192087E7006936BD /* FloatingPointEnvironment.cpp */; };
</span><span class="cx">                 FE699872192087E7006936BD /* FloatingPointEnvironment.h in Headers */ = {isa = PBXBuildFile; fileRef = FE699870192087E7006936BD /* FloatingPointEnvironment.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="lines">@@ -7698,6 +7697,8 @@
</span><span class="cx">                 1A3586DE15264C450022A659 /* RenderMultiColumnFlowThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RenderMultiColumnFlowThread.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A3763691A2E68BB009A7EE2 /* StorageNamespaceProvider.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = StorageNamespaceProvider.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A37636A1A2E68BB009A7EE2 /* StorageNamespaceProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageNamespaceProvider.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                1A40CDD01A5DF74700E9D4DB /* AbstractSQLTransaction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AbstractSQLTransaction.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+                1A40CDD11A5DF76200E9D4DB /* AbstractSQLTransactionBackend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AbstractSQLTransactionBackend.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 1A494BBB0A122DCD00FDAFC1 /* HTMLElement.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = HTMLElement.idl; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A494BF80A122F4400FDAFC1 /* JSHTMLElement.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSHTMLElement.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A494BF90A122F4400FDAFC1 /* JSHTMLElement.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = JSHTMLElement.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -14268,7 +14269,6 @@
</span><span class="cx">                 FE456F161677D74E005EDDF9 /* DatabaseManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DatabaseManager.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 FE456F171677D74E005EDDF9 /* DatabaseManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DatabaseManager.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 FE4AADEC16D2C37400026FFC /* AbstractSQLStatement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AbstractSQLStatement.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><del>-                FE4AADED16D2C37400026FFC /* AbstractSQLStatementBackend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AbstractSQLStatementBackend.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</del><span class="cx">                 FE6938B51045D67E008EABB6 /* EventHandlerIOS.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EventHandlerIOS.mm; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 FE69986F192087E7006936BD /* FloatingPointEnvironment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FloatingPointEnvironment.cpp; path = ios/wak/FloatingPointEnvironment.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 FE699870192087E7006936BD /* FloatingPointEnvironment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FloatingPointEnvironment.h; path = ios/wak/FloatingPointEnvironment.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -18294,7 +18294,8 @@
</span><span class="cx">                         children = (
</span><span class="cx">                                 FE115FA9167988CD00249134 /* AbstractDatabaseServer.h */,
</span><span class="cx">                                 FE4AADEC16D2C37400026FFC /* AbstractSQLStatement.h */,
</span><del>-                                FE4AADED16D2C37400026FFC /* AbstractSQLStatementBackend.h */,
</del><ins>+                                1A40CDD01A5DF74700E9D4DB /* AbstractSQLTransaction.h */,
+                                1A40CDD11A5DF76200E9D4DB /* AbstractSQLTransactionBackend.h */,
</ins><span class="cx">                                 FE36FD1116C7826400F887C1 /* ChangeVersionData.h */,
</span><span class="cx">                                 97BC69D81505F076001B74AC /* ChangeVersionWrapper.cpp */,
</span><span class="cx">                                 97BC69D91505F076001B74AC /* ChangeVersionWrapper.h */,
</span><span class="lines">@@ -23393,7 +23394,6 @@
</span><span class="cx">                                 A172182619DE183F00464D17 /* _UIHighlightViewSPI.h in Headers */,
</span><span class="cx">                                 FE115FAB167988CD00249134 /* AbstractDatabaseServer.h in Headers */,
</span><span class="cx">                                 FE4AADEE16D2C37400026FFC /* AbstractSQLStatement.h in Headers */,
</span><del>-                                FE4AADEF16D2C37400026FFC /* AbstractSQLStatementBackend.h in Headers */,
</del><span class="cx">                                 41E1B1D10FF5986900576B3B /* AbstractWorker.h in Headers */,
</span><span class="cx">                                 29A8122E0FBB9C1D00510293 /* AccessibilityARIAGridCell.h in Headers */,
</span><span class="cx">                                 29A812330FBB9C1D00510293 /* AccessibilityARIAGridRow.h in Headers */,
</span></span></pre>
</div>
</div>

</body>
</html>