[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.21-584-g1e41756

eric at webkit.org eric at webkit.org
Fri Feb 26 22:25:45 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit eb360d793220fc68997c0b4fbe54ae44b2d36d23
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Feb 19 17:13:51 2010 +0000

    2010-02-19  Steve Block  <steveblock at google.com>
    
            Reviewed by David Levin.
    
            Sets default values of V8 runtime enabler flags to match behavior with JSC
            https://bugs.webkit.org/show_bug.cgi?id=35095
    
            No new tests, modifies a Chromium feature only.
    
            * bindings/generic/RuntimeEnabledFeatures.cpp: Modified. Sets appcache and geolocation flag defaults to 'on'
            * storage/Database.cpp: Modified. Sets database flag default to 'on'.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55020 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 0e990ca..e3ebdc2 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-02-19  Steve Block  <steveblock at google.com>
+
+        Reviewed by David Levin.
+
+        Sets default values of V8 runtime enabler flags to match behavior with JSC
+        https://bugs.webkit.org/show_bug.cgi?id=35095
+
+        No new tests, modifies a Chromium feature only.
+
+        * bindings/generic/RuntimeEnabledFeatures.cpp: Modified. Sets appcache and geolocation flag defaults to 'on'
+        * storage/Database.cpp: Modified. Sets database flag default to 'on'.
+
 2010-02-19  Alexander Pavlov  <apavlov at chromium.org>
 
         Reviewed by Pavel Feldman.
diff --git a/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp b/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp
index 3fdbb6d..1b09518 100644
--- a/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp
+++ b/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp
@@ -41,8 +41,8 @@ namespace WebCore {
 bool RuntimeEnabledFeatures::isLocalStorageEnabled = true;
 bool RuntimeEnabledFeatures::isSessionStorageEnabled = true;
 bool RuntimeEnabledFeatures::isWebkitNotificationsEnabled = false;
-bool RuntimeEnabledFeatures::isApplicationCacheEnabled = false;
-bool RuntimeEnabledFeatures::isGeolocationEnabled = false;
+bool RuntimeEnabledFeatures::isApplicationCacheEnabled = true;
+bool RuntimeEnabledFeatures::isGeolocationEnabled = true;
 bool RuntimeEnabledFeatures::isIndexedDBEnabled = false;
 
 #if ENABLE(VIDEO)
diff --git a/WebCore/storage/Database.cpp b/WebCore/storage/Database.cpp
index 648492f..2130631 100644
--- a/WebCore/storage/Database.cpp
+++ b/WebCore/storage/Database.cpp
@@ -73,7 +73,7 @@ const String& Database::databaseInfoTableName()
 
 #if ENABLE(DATABASE)
 
-static bool isDatabaseAvailable = false;
+static bool isDatabaseAvailable = true;
 
 void Database::setIsAvailable(bool available)
 {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list