Title: [172205] trunk
Revision
172205
Author
[email protected]
Date
2014-08-07 01:14:26 -0700 (Thu, 07 Aug 2014)

Log Message

[GTK] Disable IndexedDB
https://bugs.webkit.org/show_bug.cgi?id=135692

Reviewed by Carlos Garcia Campos.

.:

* Source/cmake/OptionsGTK.cmake:

Tools:

* Scripts/webkitperl/FeatureList.pm:

Modified Paths

Diff

Modified: trunk/ChangeLog (172204 => 172205)


--- trunk/ChangeLog	2014-08-07 06:23:14 UTC (rev 172204)
+++ trunk/ChangeLog	2014-08-07 08:14:26 UTC (rev 172205)
@@ -1,3 +1,12 @@
+2014-08-07  Csaba Osztrogonác  <[email protected]>
+
+        [GTK] Disable IndexedDB
+        https://bugs.webkit.org/show_bug.cgi?id=135692
+
+        Reviewed by Carlos Garcia Campos.
+
+        * Source/cmake/OptionsGTK.cmake:
+
 2014-08-06  Dean Jackson  <[email protected]>
 
         ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.

Modified: trunk/Source/cmake/OptionsGTK.cmake (172204 => 172205)


--- trunk/Source/cmake/OptionsGTK.cmake	2014-08-07 06:23:14 UTC (rev 172204)
+++ trunk/Source/cmake/OptionsGTK.cmake	2014-08-07 08:14:26 UTC (rev 172205)
@@ -296,11 +296,6 @@
     endif ()
 endif ()
 
-if (ENABLE_INDEXED_DATABASE)
-    set(WTF_USE_LEVELDB 1)
-    add_definitions(-DWTF_USE_LEVELDB=1)
-endif ()
-
 if (ENABLE_GAMEPAD_DEPRECATED)
     find_package(GUdev)
 endif ()

Modified: trunk/Tools/ChangeLog (172204 => 172205)


--- trunk/Tools/ChangeLog	2014-08-07 06:23:14 UTC (rev 172204)
+++ trunk/Tools/ChangeLog	2014-08-07 08:14:26 UTC (rev 172205)
@@ -1,3 +1,12 @@
+2014-08-07  Csaba Osztrogonác  <[email protected]>
+
+        [GTK] Disable IndexedDB
+        https://bugs.webkit.org/show_bug.cgi?id=135692
+
+        Reviewed by Carlos Garcia Campos.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2014-08-06  Dean Jackson  <[email protected]>
 
         ENABLE_CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED is not used anywhere. Remove it.

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (172204 => 172205)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2014-08-07 06:23:14 UTC (rev 172204)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2014-08-07 08:14:26 UTC (rev 172205)
@@ -256,7 +256,7 @@
       define => "ENABLE_ICONDATABASE", default => !isIOSWebKit(), value => \$icondatabaseSupport },
 
     { option => "indexed-database", desc => "Toggle Indexed Database support",
-      define => "ENABLE_INDEXED_DATABASE", default => isGtk(), value => \$indexedDatabaseSupport },
+      define => "ENABLE_INDEXED_DATABASE", default => 0, value => \$indexedDatabaseSupport },
 
     { option => "input-speech", desc => "Toggle Input Speech support",
       define => "ENABLE_INPUT_SPEECH", default => 0, value => \$inputSpeechSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to