Title: [195555] trunk/Source/WebKit2
Revision
195555
Author
[email protected]
Date
2016-01-25 14:13:25 -0800 (Mon, 25 Jan 2016)

Log Message

[WK2][NetworkCache] Enable speculative revalidation
https://bugs.webkit.org/show_bug.cgi?id=153443
<rdar://problem/23092196>

Reviewed by Antti Koivisto.

Enable speculative revalidation to better evaluate performance and
robustness.

* UIProcess/Cocoa/WebProcessPoolCocoa.mm:
(WebKit::registerUserDefaultsIfNeeded):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (195554 => 195555)


--- trunk/Source/WebKit2/ChangeLog	2016-01-25 22:07:13 UTC (rev 195554)
+++ trunk/Source/WebKit2/ChangeLog	2016-01-25 22:13:25 UTC (rev 195555)
@@ -1,3 +1,17 @@
+2016-01-25  Chris Dumez  <[email protected]>
+
+        [WK2][NetworkCache] Enable speculative revalidation
+        https://bugs.webkit.org/show_bug.cgi?id=153443
+        <rdar://problem/23092196>
+
+        Reviewed by Antti Koivisto.
+
+        Enable speculative revalidation to better evaluate performance and
+        robustness.
+
+        * UIProcess/Cocoa/WebProcessPoolCocoa.mm:
+        (WebKit::registerUserDefaultsIfNeeded):
+
 2016-01-25  Beth Dakin  <[email protected]>
 
         Handle soft spaces after accepted candidates

Modified: trunk/Source/WebKit2/UIProcess/Cocoa/WebProcessPoolCocoa.mm (195554 => 195555)


--- trunk/Source/WebKit2/UIProcess/Cocoa/WebProcessPoolCocoa.mm	2016-01-25 22:07:13 UTC (rev 195554)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/WebProcessPoolCocoa.mm	2016-01-25 22:13:25 UTC (rev 195555)
@@ -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