[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 12:37:41 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 96ff03ae6174baa5d9a3b85a394e4656fd6b0e19
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 26 08:19:28 2010 +0000

    2010-08-26  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Kent Tamura.
    
            Add ENABLE(INDEXED_DATABASE) guard
            https://bugs.webkit.org/show_bug.cgi?id=44659
    
            Build fix for ports with index database disabled.
    
            * storage/IDBKeyPathBackendImpl.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66086 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 09690a3..e08244c 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-08-26  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Kent Tamura.
+
+        Add ENABLE(INDEXED_DATABASE) guard
+        https://bugs.webkit.org/show_bug.cgi?id=44659
+
+        Build fix for ports with index database disabled.
+
+        * storage/IDBKeyPathBackendImpl.cpp:
+
 2010-08-26  Girish Ramakrishnan  <girish at forwardbias.in>
 
         Reviewed by Ariya Hidayat.
diff --git a/WebCore/storage/IDBKeyPathBackendImpl.cpp b/WebCore/storage/IDBKeyPathBackendImpl.cpp
index 6cc9be5..b7c45c3 100644
--- a/WebCore/storage/IDBKeyPathBackendImpl.cpp
+++ b/WebCore/storage/IDBKeyPathBackendImpl.cpp
@@ -30,7 +30,11 @@
 #error "Chromium should not compile this file and instead define its own version of this factory that navigates the multi-process boundry."
 #endif
 
+#if ENABLE(INDEXED_DATABASE)
+
 void IDBKeyPathBackendImpl::createIDBKeysFromSerializedValuesAndKeyPath(const Vector<RefPtr<SerializedScriptValue>&, 0> values, const String& keyPath, Vector<RefPtr<IDBKey>, 0>& keys)
 {
     // FIXME: Implement this method once JSC supports WireFormat for SerializedScriptValue.
 }
+
+#endif // ENABLE(INDEXED_DATABASE)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list