Title: [235239] trunk/Source/WebKit
- Revision
- 235239
- Author
- [email protected]
- Date
- 2018-08-23 12:58:30 -0700 (Thu, 23 Aug 2018)
Log Message
Remove keys of defaults that are no longer used in webProcessPool
https://bugs.webkit.org/show_bug.cgi?id=188855
Reviewed by Alex Christensen.
* UIProcess/Cocoa/WebProcessPoolCocoa.mm:
(WebKit::registerUserDefaultsIfNeeded):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (235238 => 235239)
--- trunk/Source/WebKit/ChangeLog 2018-08-23 19:57:44 UTC (rev 235238)
+++ trunk/Source/WebKit/ChangeLog 2018-08-23 19:58:30 UTC (rev 235239)
@@ -1,3 +1,13 @@
+2018-08-23 Sihui Liu <[email protected]>
+
+ Remove keys of defaults that are no longer used in webProcessPool
+ https://bugs.webkit.org/show_bug.cgi?id=188855
+
+ Reviewed by Alex Christensen.
+
+ * UIProcess/Cocoa/WebProcessPoolCocoa.mm:
+ (WebKit::registerUserDefaultsIfNeeded):
+
2018-08-23 Dan Bernstein <[email protected]>
[Cocoa] First scroll gesture in pinned, non-rubber-banding WKWebView may fail to initiate back/forward swipe
Modified: trunk/Source/WebKit/UIProcess/Cocoa/WebProcessPoolCocoa.mm (235238 => 235239)
--- trunk/Source/WebKit/UIProcess/Cocoa/WebProcessPoolCocoa.mm 2018-08-23 19:57:44 UTC (rev 235238)
+++ trunk/Source/WebKit/UIProcess/Cocoa/WebProcessPoolCocoa.mm 2018-08-23 19:58:30 UTC (rev 235239)
@@ -75,13 +75,9 @@
static NSString *WebKitApplicationDidChangeAccessibilityEnhancedUserInterfaceNotification = @"NSApplicationDidChangeAccessibilityEnhancedUserInterfaceNotification";
#endif
-// FIXME: <rdar://problem/9138817> - After this "backwards compatibility" radar is removed, this code should be removed to only return an empty String.
-NSString *WebIconDatabaseDirectoryDefaultsKey = @"WebIconDatabaseDirectoryDefaultsKey";
-
static NSString * const WebKit2HTTPProxyDefaultsKey = @"WebKit2HTTPProxy";
static NSString * const WebKit2HTTPSProxyDefaultsKey = @"WebKit2HTTPSProxy";
-static NSString * const WebKitNetworkCacheEnabledDefaultsKey = @"WebKitNetworkCacheEnabled";
static NSString * const WebKitNetworkCacheEfficacyLoggingEnabledDefaultsKey = @"WebKitNetworkCacheEfficacyLoggingEnabled";
static NSString * const WebKitSuppressMemoryPressureHandlerDefaultsKey = @"WebKitSuppressMemoryPressureHandler";
@@ -98,9 +94,6 @@
namespace WebKit {
-NSString *SchemeForCustomProtocolRegisteredNotificationName = @"WebKitSchemeForCustomProtocolRegisteredNotification";
-NSString *SchemeForCustomProtocolUnregisteredNotificationName = @"WebKitSchemeForCustomProtocolUnregisteredNotification";
-
static void registerUserDefaultsIfNeeded()
{
static bool didRegister;
@@ -113,7 +106,6 @@
[registrationDictionary setObject:@YES forKey:WebKitJSCJITEnabledDefaultsKey];
[registrationDictionary setObject:@YES forKey:WebKitJSCFTLJITEnabledDefaultsKey];
- [registrationDictionary setObject:@YES forKey:WebKitNetworkCacheEnabledDefaultsKey];
[registrationDictionary setObject:@NO forKey:WebKitNetworkCacheEfficacyLoggingEnabledDefaultsKey];
[[NSUserDefaults standardUserDefaults] registerDefaults:registrationDictionary];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes