Title: [198651] trunk/Source/WebKit2
Revision
198651
Author
[email protected]
Date
2016-03-24 16:16:53 -0700 (Thu, 24 Mar 2016)

Log Message

[WK2] Disable network cache speculative validation by default
https://bugs.webkit.org/show_bug.cgi?id=155857
<rdar://problem/25233210>

Reviewed by Alex Christensen.

Disable network cache speculative validation by default. Clients such
as Safari now use the API added in r198544 to enable if they want.

* UIProcess/API/APIProcessPoolConfiguration.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (198650 => 198651)


--- trunk/Source/WebKit2/ChangeLog	2016-03-24 23:09:18 UTC (rev 198650)
+++ trunk/Source/WebKit2/ChangeLog	2016-03-24 23:16:53 UTC (rev 198651)
@@ -1,3 +1,16 @@
+2016-03-24  Chris Dumez  <[email protected]>
+
+        [WK2] Disable network cache speculative validation by default
+        https://bugs.webkit.org/show_bug.cgi?id=155857
+        <rdar://problem/25233210>
+
+        Reviewed by Alex Christensen.
+
+        Disable network cache speculative validation by default. Clients such
+        as Safari now use the API added in r198544 to enable if they want.
+
+        * UIProcess/API/APIProcessPoolConfiguration.h:
+
 2016-03-24  Alex Christensen  <[email protected]>
 
         Fix null dereferencing in NetworkLoad::continueCanAuthenticateAgainstProtectionSpace

Modified: trunk/Source/WebKit2/UIProcess/API/APIProcessPoolConfiguration.h (198650 => 198651)


--- trunk/Source/WebKit2/UIProcess/API/APIProcessPoolConfiguration.h	2016-03-24 23:09:18 UTC (rev 198650)
+++ trunk/Source/WebKit2/UIProcess/API/APIProcessPoolConfiguration.h	2016-03-24 23:16:53 UTC (rev 198651)
@@ -96,8 +96,7 @@
     bool m_shouldHaveLegacyDataStore { false };
 
     unsigned m_maximumProcessCount { 0 };
-    // FIXME: This should be disabled by default once Safari has been updated to explicitly enable it.
-    bool m_diskCacheSpeculativeValidationEnabled { true };
+    bool m_diskCacheSpeculativeValidationEnabled { false };
     WebKit::CacheModel m_cacheModel { WebKit::CacheModelPrimaryWebBrowser };
     int64_t m_diskCacheSizeOverride { -1 };
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to