[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:58:28 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 2d18d4895d76de27511a15ba985859acd6864a44
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 3 07:03:00 2010 +0000

    2010-09-02  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Kent Tamura.
    
            Add ENABLE(DATABASE) guard to DatabaseAuthorizer.cpp
            https://bugs.webkit.org/show_bug.cgi?id=45152
    
            DatabaseAuthorizer is used only with ENABLE(DATABASE).
    
            * storage/DatabaseAuthorizer.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66717 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 98a0dbe..9c232ba 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-09-02  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Kent Tamura.
+
+        Add ENABLE(DATABASE) guard to DatabaseAuthorizer.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=45152
+
+        DatabaseAuthorizer is used only with ENABLE(DATABASE).
+
+        * storage/DatabaseAuthorizer.cpp:
+
 2010-09-02  Pavel Podivilov  <podivilov at chromium.org>
 
         Reviewed by Yury Semikhatsky.
diff --git a/WebCore/storage/DatabaseAuthorizer.cpp b/WebCore/storage/DatabaseAuthorizer.cpp
index 79e47d4..e287dee 100644
--- a/WebCore/storage/DatabaseAuthorizer.cpp
+++ b/WebCore/storage/DatabaseAuthorizer.cpp
@@ -29,6 +29,8 @@
 #include "config.h"
 #include "DatabaseAuthorizer.h"
 
+#if ENABLE(DATABASE)
+
 #include "PlatformString.h"
 #include <wtf/PassRefPtr.h>
 
@@ -419,3 +421,5 @@ int DatabaseAuthorizer::updateDeletesBasedOnTableName(const String& tableName)
 }
 
 } // namespace WebCore
+
+#endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list