Changeset 55140 in webkit


Ignore:
Timestamp:
Feb 23, 2010 3:43:51 AM (14 years ago)
Author:
steveblock@google.com
Message:

Sets default values of V8 runtime enabler flags to match behavior with JSC
https://bugs.webkit.org/show_bug.cgi?id=35095

Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r55138 r55140  
     12010-02-23  Steve Block  <steveblock@google.com>
     2
     3        Reviewed by David Levin.
     4
     5        Sets default values of V8 runtime enabler flags to match behavior with JSC
     6        https://bugs.webkit.org/show_bug.cgi?id=35095
     7
     8        No new tests, modifies a Chromium feature only.
     9
     10        * bindings/generic/RuntimeEnabledFeatures.cpp: Modified. Sets appcache and geolocation flag defaults to 'on'
     11        * storage/Database.cpp: Modified. Sets database flag default to 'on'.
     12
    1132010-02-23  Stephan Aßmus  <superstippi@gmx.de>
    214
  • trunk/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp

    r55022 r55140  
    4242bool RuntimeEnabledFeatures::isSessionStorageEnabled = true;
    4343bool RuntimeEnabledFeatures::isWebkitNotificationsEnabled = false;
    44 bool RuntimeEnabledFeatures::isApplicationCacheEnabled = false;
    45 bool RuntimeEnabledFeatures::isGeolocationEnabled = false;
     44bool RuntimeEnabledFeatures::isApplicationCacheEnabled = true;
     45bool RuntimeEnabledFeatures::isGeolocationEnabled = true;
    4646bool RuntimeEnabledFeatures::isIndexedDBEnabled = false;
    4747
  • trunk/WebCore/storage/Database.cpp

    r55022 r55140  
    7474#if ENABLE(DATABASE)
    7575
    76 static bool isDatabaseAvailable = false;
     76static bool isDatabaseAvailable = true;
    7777
    7878void Database::setIsAvailable(bool available)
Note: See TracChangeset for help on using the changeset viewer.