Title: [196124] trunk/Source/WebKit2
Revision
196124
Author
[email protected]
Date
2016-02-04 09:12:43 -0800 (Thu, 04 Feb 2016)

Log Message

Unreviewed, rolling out r196067.

Re-enable speculative revalidation now that we have measured
the impact on the perf bots

Reverted changeset:

"Unreviewed, rolling out r195555."
https://bugs.webkit.org/show_bug.cgi?id=153443
http://trac.webkit.org/changeset/196067

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (196123 => 196124)


--- trunk/Source/WebKit2/ChangeLog	2016-02-04 16:57:44 UTC (rev 196123)
+++ trunk/Source/WebKit2/ChangeLog	2016-02-04 17:12:43 UTC (rev 196124)
@@ -1,3 +1,16 @@
+2016-02-04  Chris Dumez  <[email protected]>
+
+        Unreviewed, rolling out r196067.
+
+        Re-enable speculative revalidation now that we have measured
+        the impact on the perf bots
+
+        Reverted changeset:
+
+        "Unreviewed, rolling out r195555."
+        https://bugs.webkit.org/show_bug.cgi?id=153443
+        http://trac.webkit.org/changeset/196067
+
 2016-02-03  Alex Christensen  <[email protected]>
 
         Report wasBlocked and cannotShowURL errors when using NetworkSession

Modified: trunk/Source/WebKit2/UIProcess/Cocoa/WebProcessPoolCocoa.mm (196123 => 196124)


--- trunk/Source/WebKit2/UIProcess/Cocoa/WebProcessPoolCocoa.mm	2016-02-04 16:57:44 UTC (rev 196123)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/WebProcessPoolCocoa.mm	2016-02-04 17:12:43 UTC (rev 196124)
@@ -113,7 +113,7 @@
     [registrationDictionary setObject:[NSNumber numberWithBool:YES] forKey:WebKitNetworkCacheEnabledDefaultsKey];
     [registrationDictionary setObject:[NSNumber numberWithBool:NO] forKey:WebKitNetworkCacheEfficacyLoggingEnabledDefaultsKey];
 #if ENABLE(NETWORK_CACHE_SPECULATIVE_REVALIDATION)
-    [registrationDictionary setObject:[NSNumber numberWithBool:NO] forKey:WebKitNetworkCacheSpeculativeRevalidationEnabledDefaultsKey];
+    [registrationDictionary setObject:[NSNumber numberWithBool:YES] forKey:WebKitNetworkCacheSpeculativeRevalidationEnabledDefaultsKey];
 #endif
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to